[][src]Struct rsyn::FileEntry

pub struct FileEntry {
    pub file_len: u64,
    pub mode: u32,
    // some fields omitted
}

Description of a single file (or directory or symlink etc).

The Display trait formats an entry like in ls -l, and like in rsync directory listings.

Fields

file_len: u64

Length of the file, in bytes.

mode: u32

Unix mode, containing the file type and permissions.

Implementations

impl FileEntry[src]

pub fn name_bytes(&self) -> &[u8][src]

Returns the file name, as a byte string, in the (remote) OS's encoding.

rsync doesn't constrain the encoding, so this will typically, but not necessarily be UTF-8.

pub fn name_lossy_string(&self) -> Cow<str>[src]

Returns the file name, with un-decodable bytes converted to Unicode replacement characters.

For the common case of UTF-8 names, this is simply the name, but if the remote end uses a different encoding the name may be mangled.

This is suitable for printing, but might not be suitable for use as a destination file name.

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

Returns true if this entry describes a plain file.

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

Returns true if this entry describes a directory.

Returns true if this entry describes a symlink.

pub fn unix_mtime(&self) -> u32[src]

Returns the modification time, in seconds since the Unix epoch.

pub fn mtime(&self) -> DateTime<Local>[src]

Returns the modification time as a chrono::DateTime associated to the local timezone.

Trait Implementations

impl Debug for FileEntry[src]

impl Display for FileEntry[src]

Display this entry in a format like that of ls, and like rsync uses in listing directories:

drwxr-x---         420 2020-05-02 07:25:17 rsyn

The modification time is shown in the local timezone.

impl Eq for FileEntry[src]

impl PartialEq<FileEntry> for FileEntry[src]

impl StructuralEq for FileEntry[src]

impl StructuralPartialEq for FileEntry[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> ToString for T where
    T: Display + ?Sized
[src]

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.