pub trait ConfidentialState: Debug + Hash + StrictDumb + StrictEncode + StrictDecode + CommitEncode + Eq + Copy {
    // Required methods
    fn state_type(&self) -> StateType;
    fn state_commitment(&self) -> StateCommitment;
}
Expand description

Marker trait for types of state which are just a commitment to the actual state data.

Required Methods§

Implementors§