1
Fork 0

sed -i -s 's/ for Sized?//g' **/*.rs

This commit is contained in:
Jorge Aparicio 2015-01-04 21:39:02 -05:00
parent 03268bbf35
commit 774588fd9d
42 changed files with 75 additions and 75 deletions

View file

@ -786,7 +786,7 @@ pub trait GenericPath: Clone + GenericPathUnsafe {
}
/// A trait that represents something bytes-like (e.g. a &[u8] or a &str)
pub trait BytesContainer for Sized? {
pub trait BytesContainer {
/// Returns a &[u8] representing the receiver
fn container_as_bytes<'a>(&'a self) -> &'a [u8];
/// Returns the receiver interpreted as a utf-8 string, if possible