Struct dtab::path::Path
[−]
[src]
pub struct Path<'bytes>(pub Vec<&'bytes [u8]>);
Methods
impl<'bytes> Path<'bytes>
[src]
fn append<'b, T>(&mut self, path: T) -> Result<&mut Self, PathError> where
T: Into<&'b [u8]>,
'b: 'bytes,
T: Into<&'b [u8]>,
'b: 'bytes,
Trait Implementations
impl<'a, 'b, R> Div<R> for &'a mut Path<'a> where
R: Into<&'b [u8]>,
'b: 'a,
[src]
R: Into<&'b [u8]>,
'b: 'a,
type Output = Self
The resulting type after applying the /
operator
fn div(self, rhs: R) -> Self
The method for the /
operator
impl<'a, 'b, T> Extend<T> for Path<'a> where
T: Into<&'b [u8]>,
'b: 'a,
[src]
T: Into<&'b [u8]>,
'b: 'a,
fn extend<I>(&mut self, iter: I) where
I: IntoIterator<Item = T>,
I: IntoIterator<Item = T>,
Extends a collection with the contents of an iterator. Read more