pub struct ObjectStreamContents {
pub objects: Vec<(u32, Object)>,
}Expand description
Parsed contents of an object stream: a list of (object_number, object) pairs.
Fields§
§objects: Vec<(u32, Object)>Objects extracted from the stream, indexed by their position. The tuple is (object_number, parsed_object).
Auto Trait Implementations§
impl Freeze for ObjectStreamContents
impl RefUnwindSafe for ObjectStreamContents
impl Send for ObjectStreamContents
impl Sync for ObjectStreamContents
impl Unpin for ObjectStreamContents
impl UnsafeUnpin for ObjectStreamContents
impl UnwindSafe for ObjectStreamContents
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