Struct ssh2::FileStat[][src]

pub struct FileStat {
    pub size: Option<u64>,
    pub uid: Option<u32>,
    pub gid: Option<u32>,
    pub perm: Option<u32>,
    pub atime: Option<u64>,
    pub mtime: Option<u64>,
}

Metadata information about a remote file.

Fields are not necessarily all provided

Fields

size: Option<u64>

File size, in bytes of the file.

uid: Option<u32>

Owner ID of the file

gid: Option<u32>

Owning group of the file

perm: Option<u32>

Permissions (mode) of the file

atime: Option<u64>

Last access time of the file

mtime: Option<u64>

Last modification time of the file

Implementations

impl FileStat[src]

pub fn file_type(&self) -> FileType[src]

Returns the file type for this filestat.

pub fn is_dir(&self) -> bool[src]

Returns whether this metadata is for a directory.

pub fn is_file(&self) -> bool[src]

Returns whether this metadata is for a regular file.

pub fn from_raw(raw: &LIBSSH2_SFTP_ATTRIBUTES) -> FileStat[src]

Creates a new instance of a stat from a raw instance.

pub fn raw(&self) -> LIBSSH2_SFTP_ATTRIBUTES[src]

Convert this stat structure to its raw representation.

Trait Implementations

impl Clone for FileStat[src]

impl Debug for FileStat[src]

impl Eq for FileStat[src]

impl PartialEq<FileStat> for FileStat[src]

impl StructuralEq for FileStat[src]

impl StructuralPartialEq for FileStat[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> 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.