[][src]Struct hashdir::FileNode

pub struct FileNode {
    pub path: String,
    pub hash: Hash,
    pub size: u64,
}

Fields

path: String

Relative path of the file to the specified root

hash: Hash

SHA-256 hash (lowercase hex) of:

  • the relative path to the specified root
  • the contents of the file

Example: hash = sha256("./path/to/foo.txt 01234567...89abcdef") ^--- Note the space separator

size: u64

Size of the file in bytes

Methods

impl FileNode[src]

pub fn from_path(path: &Path, root: &Path) -> Result<Self, NodeError>[src]

Trait Implementations

impl Debug for FileNode[src]

impl Serialize for FileNode[src]

impl<'de> Deserialize<'de> for FileNode[src]

Auto Trait Implementations

impl Send for FileNode

impl Sync for FileNode

Blanket Implementations

impl<T> From for T[src]

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

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

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

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

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

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

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

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Same for T

type Output = T

Should always be Self

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]