Struct FileEntry

Source
pub struct FileEntry {
    pub file_len: u64,
    pub mode: u32,
    /* private fields */
}
Expand description

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§

Source§

impl FileEntry

Source

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

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.

Source

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

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.

Source

pub fn is_file(&self) -> bool

Returns true if this entry describes a plain file.

Source

pub fn is_dir(&self) -> bool

Returns true if this entry describes a directory.

Returns true if this entry describes a symlink.

Source

pub fn unix_mtime(&self) -> u32

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

Source

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

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

Trait Implementations§

Source§

impl Debug for FileEntry

Source§

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

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

impl Display for FileEntry

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.

Source§

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

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

impl PartialEq for FileEntry

Source§

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

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

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

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

impl Eq for FileEntry

Source§

impl StructuralPartialEq for FileEntry

Auto Trait Implementations§

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

Source§

fn from(t: T) -> T

Returns the argument unchanged.

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> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. Read more
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.