pub struct PathTable {
pub header_flags: u32,
pub rle_table_size: u32,
pub local_to_node: Vec<u8>,
pub node_to_local: Vec<u32>,
pub nodes: Vec<u8>,
pub flags: u32,
}Fields§
§header_flags: u32§rle_table_size: u32§local_to_node: Vec<u8>§node_to_local: Vec<u32>§nodes: Vec<u8>§flags: u32Trait Implementations§
Auto Trait Implementations§
impl Freeze for PathTable
impl RefUnwindSafe for PathTable
impl Send for PathTable
impl Sync for PathTable
impl Unpin for PathTable
impl UnwindSafe for PathTable
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more