Skip to main content

Digest64

Type Alias Digest64 

Source
pub type Digest64 = Option<String>;
Expand description

A sealed file’s state at a point in time.

None records “absent”, which has to be distinguishable from any digest: creating a contract file that was not there, or deleting one that was, are both tampering and both would otherwise be invisible.

Aliased Type§

pub enum Digest64 {
    None,
    Some(String),
}

Variants§

§1.0.0

None

No value.

§1.0.0

Some(String)

Some value of type T.