Struct fress::integral::guide::Guide [−][src]
pub struct Guide {
pub hash: u32,
pub is_big_bit: u32,
pub unit_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 tell if the number is arbitrary
precision, and if so, how many units hold the significant bits.
Top 32 bits [ Hash (32) ]
Bottom bits [ Big? | Significant units (16) ]
Fields
hash: u32
is_big_bit: u32
unit_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