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),
}