Struct FsPath

Source
pub struct FsPath {
    pub path: PathBuf,
}
Available on crate feature std only.
Expand description

🌐 A more featureful wrapper over PathBuf.

§Table of contents

Most methods traverse symbolic links along the path, while the _ts suffixed variants can do so, optionally.

assert_eq![some_path.exists(), some_path.exists_ts(true)];

Fields§

§path: PathBuf

The inner PathBuf.

Implementations§

Source§

impl FsPath

§General methods.

Source

pub fn new<P: AsRef<Path>>(path: P) -> Self

Returns a FsPath from what could’ve been a Path.

Source

pub fn from_current_dir() -> IoResult<Self>

Returns the current working directory.

Calls std::env::current_dir under the hood.

Source

pub fn from_manifest_dir() -> Self

Retuns the path of CARGO_MANIFEST_DIR.

Source

pub fn from_manifest_path() -> Self

Retuns the path of CARGO_MANIFEST_PATH.

Source

pub fn from_temp_dir() -> Self

Returns a temporary directory.

Calls std::env::temp_dir under the hood.

Source

pub fn from_crate_root<P: AsRef<Path>>(path: P) -> IoResult<Self>

Resolves a given path relative to the nearest Cargo.toml directory.

This function searches for the nearest Cargo.toml file starting from the current working directory and traversing upwards through its ancestors. Once the Cargo.toml is found, the provided path is appended to its directory.

§Errors

Returns an error if it can’t find any Cargo.toml file, or if it encounters an invalid path during the search process.

§Examples
use devela::FsPath;
match FsPath::from_crate_root("") {
    Ok(p) => println!("Current crate root is {:?}", p),
    Err(e) => println!("Error obtaining crate root {:?}", e)
};
Source

pub fn canonicalize(&self) -> IoResult<FsPath>

Returns the canonical, absolute form of the path with all intermediate components normalized and symbolic links resolved.

Calls std::fs::canonicalize under the hood.

Reads a symbolic link, returning the file that the link points to.

This function will return an error in the following situations, but is not limited to just these cases:

  • path is not a symbolic link.
  • path does not exist.

Calls std::fs::read_link under the hood.

Source

pub fn is_absolute(&self) -> bool

Is this path absolute?

Source

pub fn is_relative(&self) -> bool

Is this path relative?

Source

pub fn parent(&self) -> Option<FsPath>

Returns the path without its final component, if there is one.

Returns None if the path terminates in a root or prefix.

Source

pub fn pop(&mut self) -> bool

Truncates self to self.parent.

Returns false and does nothing if self.parent is None. Otherwise, returns true.

Source

pub fn push<P: AsRef<Path>>(&mut self, path: P)

Extends self with path.

If path is absolute, it replaces the current path.

Calls std::path::PathBuf::push under the hood.

Source

pub fn display(&self) -> PathDisplay<'_>

Returns an object that implements Display.

Source

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

Yields a &str slice if the FsPath is valid unicode.

Source

pub fn to_string_lossy(&self) -> Cow<'_, str>

Converts a FsPath to a Cow<str>.

Any non-Unicode sequences are replaced with U+FFFD REPLACEMENT CHARACTER.

Source

pub fn into_inner(self) -> PathBuf

Returns the inner PathBuf.

Source

pub fn into_ref_mut(&mut self) -> &mut PathBuf

Returns an exclusive reference to the inner PathBuf.

Source

pub fn as_path(&self) -> &Path

Coerces the inner PathBuf to a Path slice.

Source§

impl FsPath

Source

pub fn exists(&self) -> bool

Does this path exist?

Source

pub fn is_file(&self) -> bool

Is this a file?

Source

pub fn is_dir(&self) -> bool

Is this a directory?

Is this a symbolic link?

Source

pub fn metadata(&self) -> IoResult<FileMetadata>

Returns the metadata.

Source

pub fn file_type(&self) -> IoResult<FileType>

Returns the FileType.

Source

pub fn len(&self) -> IoResult<u64>

Returns the size of the file, in bytes.

Source

pub fn is_empty(&self) -> IoResult<bool>

Returns true if the file size equals zero.

Source

pub fn created(&self) -> IoResult<SystemTime>

Returns the time of creation.

Source

pub fn accessed(&self) -> IoResult<SystemTime>

Returns the time of access.

Source

pub fn modified(&self) -> IoResult<SystemTime>

Returns the time of modification.

Source

pub fn permissions(&self) -> IoResult<FilePermissions>

Returns the permissions of the file.

Source

pub fn is_readonly(&self) -> IoResult<bool>

Is this a read-only file?

Source

pub fn set_readonly(&mut self, readonly: bool) -> IoResult<bool>

Sets the read-only flag, returning the previous read-only state.

Source§

impl FsPath

traverse symbolic links
Source

pub fn exists_ts(&self, traverse: bool) -> bool

Does this path exist?

Source

pub fn is_file_ts(&self, traverse: bool) -> bool

Is this a file?

Source

pub fn is_dir_ts(&self, traverse: bool) -> bool

Is this a directory?

Is this a symbolic link?

Source

pub fn metadata_ts(&self, traverse: bool) -> IoResult<FileMetadata>

Returns the metadata that optionally traverses symbolic links.

Source

pub fn file_type_ts(&self, traverse: bool) -> IoResult<FileType>

Returns the FileType.

Source

pub fn len_ts(&self, traverse: bool) -> IoResult<u64>

Returns the size of the file, in bytes.

Source

pub fn is_empty_ts(&self, traverse: bool) -> IoResult<bool>

Returns true if the file size equals zero.

Source

pub fn created_ts(&self, traverse: bool) -> IoResult<SystemTime>

Returns the time of creation.

Source

pub fn accessed_ts(&self, traverse: bool) -> IoResult<SystemTime>

Returns the time of access.

Source

pub fn modified_ts(&self, traverse: bool) -> IoResult<SystemTime>

Returns the time of modification.

Source

pub fn permissions_ts(&self, traverse: bool) -> IoResult<FilePermissions>

Returns the permissions of the file.

Source

pub fn is_readonly_ts(&self, traverse: bool) -> IoResult<bool>

Is this a read-only file?

Source

pub fn set_readonly_ts( &mut self, readonly: bool, traverse: bool, ) -> IoResult<bool>

Sets the read-only flag, returning the previous read-only state.

Source§

impl FsPath

Source

pub fn dev(&self) -> IoResult<u64>

Returns the ID of the device containing the file.

Source

pub fn ino(&self) -> IoResult<u64>

Returns the inode number.

Source

pub fn mode(&self) -> IoResult<u32>

Returns the rights applied to this file.

Returns the number of hard links pointing to this file.

Source

pub fn uid(&self) -> IoResult<u32>

Returns the user ID of the owner of this file.

Source

pub fn gid(&self) -> IoResult<u32>

Returns the group ID of the owner of this file.

Source

pub fn rdev(&self) -> IoResult<u64>

Returns the device ID of this file (if it is a special one).

Source

pub fn size(&self) -> IoResult<u64>

Returns the total size of this file in bytes.

Source

pub fn atime(&self) -> IoResult<i64>

Returns the last access time of the file, in seconds since Unix Epoch.

Source

pub fn atime_nsec(&self) -> IoResult<i64>

Returns the last access time of the file, in nanoseconds since atime.

Source

pub fn mtime(&self) -> IoResult<i64>

Returns the last modification time of the file, in seconds since Unix Epoch.

Source

pub fn mtime_nsec(&self) -> IoResult<i64>

Returns the last modification time of the file, in nanoseconds since mtime.

Source

pub fn ctime(&self) -> IoResult<i64>

Returns the last status change time of the file, in seconds since Unix Epoch.

Source

pub fn ctime_nsec(&self) -> IoResult<i64>

Returns the last status change time of the file, in nanoseconds since ctime.

Source

pub fn blksize(&self) -> IoResult<u64>

Returns the block size for filesystem I/O.

Source

pub fn blocks(&self) -> IoResult<u64>

Returns the number of blocks allocated to the file, in 512-byte units.

Source§

impl FsPath

traverse symbolic links
Source

pub fn dev_ts(&self, traverse: bool) -> IoResult<u64>

Returns the ID of the device containing the file.

Source

pub fn ino_ts(&self, traverse: bool) -> IoResult<u64>

Returns the inode number.

Source

pub fn mode_ts(&self, traverse: bool) -> IoResult<u32>

Returns the rights applied to this file.

Returns the number of hard links pointing to this file.

Source

pub fn uid_ts(&self, traverse: bool) -> IoResult<u32>

Returns the user ID of the owner of this file.

Source

pub fn gid_ts(&self, traverse: bool) -> IoResult<u32>

Returns the group ID of the owner of this file.

Source

pub fn rdev_ts(&self, traverse: bool) -> IoResult<u64>

Returns the device ID of this file (if it is a special one).

Source

pub fn size_ts(&self, traverse: bool) -> IoResult<u64>

Returns the total size of this file in bytes.

Source

pub fn atime_ts(&self, traverse: bool) -> IoResult<i64>

Returns the last access time of the file, in seconds since Unix Epoch.

Source

pub fn atime_nsec_ts(&self, traverse: bool) -> IoResult<i64>

Returns the last access time of the file, in nanoseconds since atime.

Source

pub fn mtime_ts(&self, traverse: bool) -> IoResult<i64>

Returns the last modification time of the file, in seconds since Unix Epoch.

Source

pub fn mtime_nsec_ts(&self, traverse: bool) -> IoResult<i64>

Returns the last modification time of the file, in nanoseconds since mtime.

Source

pub fn ctime_ts(&self, traverse: bool) -> IoResult<i64>

Returns the last status change time of the file, in seconds since Unix Epoch.

Source

pub fn ctime_nsec_ts(&self, traverse: bool) -> IoResult<i64>

Returns the last status change time of the file, in nanoseconds since ctime.

Source

pub fn blksize_ts(&self, traverse: bool) -> IoResult<u64>

Returns the block size for filesystem I/O.

Source

pub fn blocks_ts(&self, traverse: bool) -> IoResult<u64>

Returns the number of blocks allocated to the file, in 512-byte units.

Source§

impl FsPath

§windows methods

Source

pub fn file_attributes(&self) -> IoResult<u32>

Returns the value of the dwFileAttributes field of this metadata.

Source

pub fn creation_time(&self) -> IoResult<u64>

Returns the value of the ftCreationTime field of this metadata.

Source

pub fn last_access_time(&self) -> IoResult<u64>

Returns the value of the ftLastAccessTime field of this metadata.

Source

pub fn last_write_time(&self) -> IoResult<u64>

Returns the value of the ftLastWriteTime field of this metadata.

Source

pub fn file_size(&self) -> IoResult<u64>

Returns the value of the nFileSize{High,Low} fields of this metadata.

Trait Implementations§

Source§

impl Clone for FsPath

Source§

fn clone(&self) -> FsPath

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

impl Debug for FsPath

Source§

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

Formats the value using the given formatter. Read more
Source§

impl<'a> From<&'a FsPath> for &'a Path

Source§

fn from(fspath: &'a FsPath) -> Self

Converts to this type from the input type.
Source§

impl<'a> From<&'a FsPath> for &'a PathBuf

Source§

fn from(fspath: &'a FsPath) -> Self

Converts to this type from the input type.
Source§

impl From<&FsPath> for PathBuf

Source§

fn from(fspath: &FsPath) -> Self

Converts to this type from the input type.
Source§

impl From<&Path> for FsPath

Source§

fn from(path: &Path) -> Self

Converts to this type from the input type.
Source§

impl From<&PathBuf> for FsPath

Source§

fn from(path: &PathBuf) -> Self

Converts to this type from the input type.
Source§

impl<'a> From<&'a mut FsPath> for &'a Path

Source§

fn from(fspath: &'a mut FsPath) -> Self

Converts to this type from the input type.
Source§

impl<'a> From<&'a mut FsPath> for &'a mut PathBuf

Source§

fn from(fspath: &'a mut FsPath) -> Self

Converts to this type from the input type.
Source§

impl From<&mut FsPath> for PathBuf

Source§

fn from(fspath: &mut FsPath) -> Self

Converts to this type from the input type.
Source§

impl From<&mut Path> for FsPath

Source§

fn from(path: &mut Path) -> Self

Converts to this type from the input type.
Source§

impl From<&mut PathBuf> for FsPath

Source§

fn from(path: &mut PathBuf) -> Self

Converts to this type from the input type.
Source§

impl From<FsPath> for PathBuf

Source§

fn from(fspath: FsPath) -> Self

Converts to this type from the input type.
Source§

impl From<PathBuf> for FsPath

Source§

fn from(path: PathBuf) -> Self

Converts to this type from the input type.

Auto Trait Implementations§

§

impl Freeze for FsPath

§

impl RefUnwindSafe for FsPath

§

impl Send for FsPath

§

impl Sync for FsPath

§

impl Unpin for FsPath

§

impl UnwindSafe for FsPath

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> ByteSized for T

Source§

const BYTE_ALIGN: usize = _

The alignment of this type in bytes.
Source§

const BYTE_SIZE: usize = _

The size of this type in bytes.
Source§

fn byte_align(&self) -> usize

Returns the alignment of this type in bytes.
Source§

fn byte_size(&self) -> usize

Returns the size of this type in bytes. Read more
Source§

fn ptr_size_ratio(&self) -> [usize; 2]

Returns the size ratio between Ptr::BYTES and BYTE_SIZE. Read more
Source§

impl<T, R> Chain<R> for T
where T: ?Sized,

Source§

fn chain<F>(self, f: F) -> R
where F: FnOnce(Self) -> R, Self: Sized,

Chain a function which takes the parameter by value.
Source§

fn chain_ref<F>(&self, f: F) -> R
where F: FnOnce(&Self) -> R,

Chain a function which takes the parameter by shared reference.
Source§

fn chain_mut<F>(&mut self, f: F) -> R
where F: FnOnce(&mut Self) -> R,

Chain a function which takes the parameter by exclusive reference.
Source§

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

Source§

unsafe fn clone_to_uninit(&self, dst: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
Source§

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

Source§

fn type_id() -> TypeId

Returns the TypeId of Self. Read more
Source§

fn type_of(&self) -> TypeId

Returns the TypeId of self. Read more
Source§

fn type_name(&self) -> &'static str

Returns the type name of self. Read more
Source§

fn type_is<T: 'static>(&self) -> bool

Returns true if Self is of type T. Read more
Source§

fn type_hash(&self) -> u64

Returns a deterministic hash of the TypeId of Self.
Source§

fn type_hash_with<H: Hasher>(&self, hasher: H) -> u64

Returns a deterministic hash of the TypeId of Self using a custom hasher.
Source§

fn as_any_ref(&self) -> &dyn Any
where Self: Sized,

Upcasts &self as &dyn Any. Read more
Source§

fn as_any_mut(&mut self) -> &mut dyn Any
where Self: Sized,

Upcasts &mut self as &mut dyn Any. Read more
Source§

fn as_any_box(self: Box<Self>) -> Box<dyn Any>
where Self: Sized,

Upcasts Box<self> as Box<dyn Any>. Read more
Source§

fn downcast_ref<T: 'static>(&self) -> Option<&T>

Available on crate feature unsafe_layout only.
Returns some shared reference to the inner value if it is of type T. Read more
Source§

fn downcast_mut<T: 'static>(&mut self) -> Option<&mut T>

Available on crate feature unsafe_layout only.
Returns some exclusive reference to the inner value if it is of type T. Read more
Source§

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

Source§

const NEEDS_DROP: bool = _

Know whether dropping values of this type matters, in compile-time.
Source§

fn mem_align_of<T>() -> usize

Returns the minimum alignment of the type in bytes. Read more
Source§

fn mem_align_of_val(&self) -> usize

Returns the alignment of the pointed-to value in bytes. Read more
Source§

fn mem_size_of<T>() -> usize

Returns the size of a type in bytes. Read more
Source§

fn mem_size_of_val(&self) -> usize

Returns the size of the pointed-to value in bytes. Read more
Source§

fn mem_copy(&self) -> Self
where Self: Copy,

Bitwise-copies a value. Read more
Source§

fn mem_needs_drop(&self) -> bool

Returns true if dropping values of this type matters. Read more
Source§

fn mem_drop(self)
where Self: Sized,

Drops self by running its destructor. Read more
Source§

fn mem_forget(self)
where Self: Sized,

Forgets about self without running its destructor. Read more
Source§

fn mem_replace(&mut self, other: Self) -> Self
where Self: Sized,

Replaces self with other, returning the previous value of self. Read more
Source§

fn mem_take(&mut self) -> Self
where Self: Default,

Replaces self with its default value, returning the previous value of self. Read more
Source§

fn mem_swap(&mut self, other: &mut Self)
where Self: Sized,

Swaps the value of self and other without deinitializing either one. Read more
Source§

unsafe fn mem_zeroed<T>() -> T

Available on crate feature unsafe_layout only.
Returns the value of type T represented by the all-zero byte-pattern. Read more
Source§

unsafe fn mem_transmute_copy<Src, Dst>(src: &Src) -> Dst

Available on crate feature unsafe_layout only.
Returns the value of type T represented by the all-zero byte-pattern. Read more
Source§

fn mem_as_bytes(&self) -> &[u8]
where Self: Sync + Unpin,

Available on crate feature unsafe_slice only.
View a Sync + Unpin self as &[u8]. Read more
Source§

fn mem_as_bytes_mut(&mut self) -> &mut [u8]
where Self: Sync + Unpin,

Available on crate feature unsafe_slice only.
View a Sync + Unpin self as &mut [u8]. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<S> FromSample<S> for S

§

fn from_sample_(s: S) -> S

Source§

impl<T> Hook for T

Source§

fn hook_ref<F>(self, f: F) -> Self
where F: FnOnce(&Self),

Applies a function which takes the parameter by shared reference, and then returns the (possibly) modified owned value. Read more
Source§

fn hook_mut<F>(self, f: F) -> Self
where F: FnOnce(&mut Self),

Applies a function which takes the parameter by exclusive reference, and then returns the (possibly) modified owned value. Read more
§

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.

Source§

impl<T> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
§

impl<F, T> IntoSample<T> for F
where T: FromSample<F>,

§

fn into_sample(self) -> T

§

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,

Source§

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
§

impl<T, U> ToSample<U> for T
where U: FromSample<T>,

§

fn to_sample_(self) -> U

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

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
§

impl<S, T> Duplex<S> for T
where T: FromSample<S> + ToSample<S>,

§

impl<T> Ungil for T
where T: Send,