[][src]Struct compiledfiles::FileInfo

pub struct FileInfo {
    pub path: PathBuf,
    pub size: Option<u64>,
    pub timestamp: Option<u64>,
    pub checksum: Option<FileCheckSum>,
}

Basic information stored for each source file. Only the path is required.

Fields

path: PathBuf

Recorded path to the source file

size: Option<u64>

Size of the source file in bytes

timestamp: Option<u64>

Last modified timestamp of the source file

checksum: Option<FileCheckSum>

Checksum of the source file

Trait Implementations

impl Debug for FileInfo[src]

impl Eq for FileInfo[src]

impl Ord for FileInfo[src]

impl PartialEq<FileInfo> for FileInfo[src]

impl PartialOrd<FileInfo> for FileInfo[src]

impl StructuralEq for FileInfo[src]

impl StructuralPartialEq for FileInfo[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<Q, K> Equivalent<K> for Q where
    K: Borrow<Q> + ?Sized,
    Q: Eq + ?Sized
[src]

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

impl<T, U> Into<U> for T where
    U: From<T>, 
[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.