Struct cosmic_space::HYPERUSER

source ·
pub struct HYPERUSER { /* private fields */ }

Methods from Deref<Target = Point>§

source

pub fn parent(&self) -> Option<PointDef<Route, Seg>>

source

pub fn last_segment(&self) -> Option<Seg>

source

pub fn is_root(&self) -> bool

source

pub fn to_agent(&self) -> Agent

source

pub fn is_global(&self) -> bool

source

pub fn is_parent_of(&self, point: &Point) -> bool

source

pub fn is_parent(&self, child: &Point) -> Result<(), ()>

source

pub fn is_normalized(&self) -> bool

source

pub fn has_bundle(&self) -> bool

source

pub fn to_safe_filename(&self) -> String

source

pub fn has_filesystem(&self) -> bool

source

pub fn is_artifact_bundle_part(&self) -> bool

source

pub fn is_artifact(&self) -> bool

source

pub fn is_artifact_bundle(&self) -> bool

source

pub fn pop(&self) -> Self

source

pub fn push<S: ToString>(&self, segment: S) -> Result<Self, SpaceErr>

source

pub fn push_file(&self, segment: String) -> Result<Self, SpaceErr>

source

pub fn push_segment(&self, segment: PointSeg) -> Result<Self, SpaceErr>

source

pub fn filepath(&self) -> Option<String>

source

pub fn is_filesystem_ref(&self) -> bool

source

pub fn to_string_impl(&self, show_route: bool) -> String

source

pub fn postfix(&self) -> String

source

pub fn is_local_root(&self) -> bool

source

pub fn is_dir(&self) -> bool

source

pub fn is_dir(&self) -> bool

Trait Implementations§

source§

impl Deref for HYPERUSER

source§

type Target = PointDef<RouteSeg, PointSeg>

The resulting type after dereferencing.
source§

fn deref(&self) -> &Point

Dereferences the value.
source§

impl LazyStatic for HYPERUSER

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<I, T> ExtractContext<I, ()> for T

source§

fn extract_context(self, _original_input: I)

Given the context attached to a nom error, and given the original input to the nom parser, extract more the useful context information. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<I> RecreateContext<I> for I

source§

fn recreate_context(_original_input: I, tail: I) -> I

Given the original input, as well as the context reported by nom, recreate a context in the original string where the error occurred. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

source§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.