pub struct Indirect {
pub num: u32,
pub generation: u16,
pub object: Object,
}Expand description
One indirect object: its number, generation, and body.
Fields§
§num: u32The object number from the N G obj header.
generation: u16The generation number from the header.
object: ObjectThe parsed body.
Trait Implementations§
impl StructuralPartialEq for Indirect
Auto Trait Implementations§
impl Freeze for Indirect
impl RefUnwindSafe for Indirect
impl Send for Indirect
impl Sync for Indirect
impl Unpin for Indirect
impl UnsafeUnpin for Indirect
impl UnwindSafe for Indirect
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