[][src]Struct termscp::fs::FsFile

pub struct FsFile {
    pub name: String,
    pub abs_path: PathBuf,
    pub last_change_time: SystemTime,
    pub last_access_time: SystemTime,
    pub creation_time: SystemTime,
    pub size: usize,
    pub ftype: Option<String>,
    pub readonly: bool,
    pub symlink: Option<Box<FsEntry>>,
    pub user: Option<u32>,
    pub group: Option<u32>,
    pub unix_pex: Option<(u8, u8, u8)>,
}

FsFile

FsFile provides an interface to file system files

Fields

name: Stringabs_path: PathBuflast_change_time: SystemTimelast_access_time: SystemTimecreation_time: SystemTimesize: usizeftype: Option<String>readonly: boolsymlink: Option<Box<FsEntry>>user: Option<u32>group: Option<u32>unix_pex: Option<(u8, u8, u8)>

Trait Implementations

impl Clone for FsFile[src]

impl Debug for FsFile[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.

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