[][src]Struct hashdir::DirNode

pub struct DirNode {
    pub path: String,
    pub hash: Hash,
    pub children: Vec<Node>,
}

Fields

path: String

Relative path of the directory to the specified root

hash: Hash

SHA-256 hash (lowercase hex) of the hashes of the children, separated by spaces.

children: Vec<Node>

List of children nodes. Can be directories or files.

Methods

impl DirNode[src]

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

Trait Implementations

impl Debug for DirNode[src]

impl Serialize for DirNode[src]

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

Auto Trait Implementations

impl Send for DirNode

impl Sync for DirNode

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]