pub struct LazyObject {
pub name: String,
pub type_name: String,
pub class_name: String,
pub element_index: usize,
}Fields§
§name: String§type_name: String§class_name: String§element_index: usizeIndex of this object’s root element in the document’s object element arena.
Populated by both ASCII and binary loaders. crate::Object::element resolves this index
while a Document is still live.
Trait Implementations§
Source§impl Clone for LazyObject
impl Clone for LazyObject
Source§fn clone(&self) -> LazyObject
fn clone(&self) -> LazyObject
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for LazyObject
impl Debug for LazyObject
Source§impl PartialEq for LazyObject
impl PartialEq for LazyObject
impl StructuralPartialEq for LazyObject
Auto Trait Implementations§
impl Freeze for LazyObject
impl RefUnwindSafe for LazyObject
impl Send for LazyObject
impl Sync for LazyObject
impl Unpin for LazyObject
impl UnsafeUnpin for LazyObject
impl UnwindSafe for LazyObject
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