Struct fress::symbol::guide::Guide [−][src]
pub struct Guide {
pub hash: u32,
pub solidus: u32,
pub count: u32,
pub prism: AnchoredLine,
pub root: AnchoredLine,
}
Expand description
The Guide structure is hydrated from its in-memory representation, 64 bits in length.
The top 32 bits contain the hash, the bottom 32 bits contain the length in bytes and
the position of the prefix separating solidus. A position of 0 means no prefix.
Top 32 bits [ Hash (32) ]
Bottom bits [ Solidus (8) | Count (8) ]
Fields
hash: u32
solidus: u32
count: u32
prism: AnchoredLine
root: AnchoredLine
Implementations
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for Guide
impl UnwindSafe for Guide
Blanket Implementations
Mutably borrows from an owned value. Read more