[−][src]Struct iref::Segment
Methods
impl<'a> Segment<'a>[src]
pub fn current() -> Segment<'static>[src]
The special dot segment . indicating the current directory.
pub fn parent() -> Segment<'static>[src]
The special dot segment .. indicating the parent directory.
pub fn len(&self) -> usize[src]
Get the length of the path name.
pub fn as_ref(&self) -> &[u8][src]
pub fn as_str(&self) -> &str[src]
Get the underlying segment slice as a string slice.
pub fn into_str(self) -> &'a str[src]
Get the underlying segment slice as a string slice by consuming the segment reference.
pub fn as_pct_str(&self) -> &PctStr[src]
Get the underlying segment slice as a percent-encoded string slice.
pub fn is_open(&self) -> bool[src]
pub fn is_empty(&self) -> bool[src]
Checks if the segment is empty.
pub fn open(&mut self)[src]
Open that path.
Trait Implementations
impl<'a> Clone for Segment<'a>[src]
impl<'a> Copy for Segment<'a>[src]
impl<'a> Debug for Segment<'a>[src]
impl<'a> Display for Segment<'a>[src]
impl<'a> Eq for Segment<'a>[src]
impl<'a> Hash for Segment<'a>[src]
fn hash<H: Hasher>(&self, hasher: &mut H)[src]
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher, 1.3.0[src]
H: Hasher,
impl<'a> Ord for Segment<'a>[src]
fn cmp(&self, other: &Segment<'a>) -> Ordering[src]
#[must_use]fn max(self, other: Self) -> Self1.21.0[src]
#[must_use]fn min(self, other: Self) -> Self1.21.0[src]
#[must_use]fn clamp(self, min: Self, max: Self) -> Self[src]
impl<'a> PartialEq<&'a str> for Segment<'a>[src]
impl<'a> PartialEq<Segment<'a>> for Segment<'a>[src]
impl<'a> PartialOrd<Segment<'a>> for Segment<'a>[src]
fn partial_cmp(&self, other: &Segment<'a>) -> Option<Ordering>[src]
#[must_use]fn lt(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]fn le(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]fn gt(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]fn ge(&self, other: &Rhs) -> bool1.0.0[src]
impl<'a> TryFrom<&'a str> for Segment<'a>[src]
Auto Trait Implementations
impl<'a> RefUnwindSafe for Segment<'a>
impl<'a> Send for Segment<'a>
impl<'a> Sync for Segment<'a>
impl<'a> Unpin for Segment<'a>
impl<'a> UnwindSafe for Segment<'a>
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
impl<T> ToString for T where
T: Display + ?Sized, [src]
T: Display + ?Sized,
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,