pub struct VfsPath { /* private fields */ }

Implementations§

§

impl Path

pub fn dot() -> Path

Returns a path for dot, i.e. the current directory. The next will return None for this path.

pub fn is_dot(&self) -> bool

pub fn validate_and_split<Source>(path: Source) -> Result<Path, Status>
where Source: Into<String>,

Splits a path string into components, also checking if it is in a canonical form, disallowing any “..” components, as well as empty component names. A lone “/” is translated to “.” (the canonical form).

pub fn is_empty(&self) -> bool

Returns true when there are no more components left in this Path.

pub fn is_dir(&self) -> bool

Returns true if the canonical path contains ‘/’ as the last symbol. Note that is_dir is false for “.”, even though a directory is implied. The canonical form for “/” is “.”.

pub fn is_single_component(&self) -> bool

Returns true when the path contains only one component - that is, it is not empty and contains no / characters.

pub fn next(&mut self) -> Option<&str>

Returns a reference to a portion of the string that names the next component, and move the internal pointer to point to the next component. See also Path::peek().

Also see Path::next_with_ref() if you want to use self while holding a reference to the returned name.

pub fn next_with_ref(&mut self) -> (&Path, Option<&str>)

Rust does not allow usage of self while the returned reference is alive, even when the reference is actually shared. See, for example,

https://internals.rust-lang.org/t/relaxing-the-borrow-checker-for-fn-mut-self-t/3256

for additional details. So if the caller wants to call any other methods on the path after calling next() while still holding a reference to the returned name they can use this method as a workaround. When Rust is extended to cover this use case, next_with_ref should be merged into Self::next().

pub fn peek(&self) -> Option<&str>

Returns a reference to a position of the string that names the next component, without moving the internal pointer. So calling peek() multiple times in a row would return the same result. See also Self::next().

pub fn into_string(self) -> String

Converts this Path into a String holding the rest of the path. Note that if there are no more components, this will return an empty string, which is not a valid path for fuchsia.io.

pub fn as_str(&self) -> &str

Returns a reference to the full string that represents this path.

pub fn with_prefix(&self, prefix: &Path) -> Path

Returns a path with prefix as a prefix. This will preserve the result of is_dir().

Trait Implementations§

§

impl AsRef<str> for Path

§

fn as_ref(&self) -> &str

Returns a reference to the remaining portion of this path that will be used in future next calls.

§

impl Clone for Path

§

fn clone(&self) -> Path

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
§

impl Debug for Path

§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
§

impl PartialEq for Path

§

fn eq(&self, other: &Path) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
§

impl TryInto<Path> for &str

§

type Error = Status

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

fn try_into(self) -> Result<Path, <&str as TryInto<Path>>::Error>

Performs the conversion.
§

impl Eq for Path

Auto Trait Implementations§

§

impl Freeze for Path

§

impl RefUnwindSafe for Path

§

impl Send for Path

§

impl Sync for Path

§

impl Unpin for Path

§

impl UnwindSafe for Path

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<T> Encode<Ambiguous1> for T

source§

unsafe fn encode( self, _encoder: &mut Encoder<'_>, _offset: usize, _depth: Depth ) -> Result<(), Error>

Encodes the object into the encoder’s buffers. Any handles stored in the object are swapped for Handle::INVALID. Read more
source§

impl<T> Encode<Ambiguous2> for T

source§

unsafe fn encode( self, _encoder: &mut Encoder<'_>, _offset: usize, _depth: Depth ) -> Result<(), Error>

Encodes the object into the encoder’s buffers. Any handles stored in the object are swapped for Handle::INVALID. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
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.

§

impl<T> IntoAny for T
where T: 'static + Send + Sync,

§

fn into_any(self: Arc<T>) -> Arc<dyn Any + Sync + Send>

Cast the given object into a dyn std::any::Any.
§

impl<T> Pointable for T

§

const ALIGN: usize = _

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

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

§

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>,

§

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.
§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

§

fn vzip(self) -> V

§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more
source§

impl<St> WithTag for St

source§

fn tagged<T>(self, tag: T) -> Tagged<T, St>

Produce a new stream from this one which yields item tupled with a constant tag
source§

impl<T> OnRootDirDrop for T
where T: Send + Sync + Debug,