pub trait KnownState:
Debug
+ StrictDumb
+ StrictEncode
+ StrictDecode
+ Eq
+ Clone
+ Hash {
const IS_FUNGIBLE: bool;
}Expand description
Trait used by contract state. Unlike rgb::ExposedState it doesn’t allow
concealment of the state, i.e. may contain incomplete data without blinding
factors, asset tags etc.
Required Associated Constants§
const IS_FUNGIBLE: bool
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.