pub trait Ticket {
const POSSIBLE_TAGS: &'static [StructureTag];
// Required methods
fn tag(&self) -> StructureTag;
fn hierarchy(&self) -> Hierarchy;
fn digest(&self) -> &[u8] ⓘ;
}
Required Associated Constants§
const POSSIBLE_TAGS: &'static [StructureTag]
Required Methods§
fn tag(&self) -> StructureTag
fn hierarchy(&self) -> Hierarchy
fn digest(&self) -> &[u8] ⓘ
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.