pub struct FatherInfo {
pub father_value_id: usize,
pub field_id: usize,
}Expand description
Represents the relation between a field and its parent (father).
Fields§
§father_value_id: usizeThe value ID of the parent node.
field_id: usizeThe ID of the field within the parent.
Implementations§
Trait Implementations§
Source§impl Clone for FatherInfo
impl Clone for FatherInfo
Source§fn clone(&self) -> FatherInfo
fn clone(&self) -> FatherInfo
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 FatherInfo
impl Debug for FatherInfo
Source§impl PartialEq for FatherInfo
impl PartialEq for FatherInfo
impl StructuralPartialEq for FatherInfo
Auto Trait Implementations§
impl Freeze for FatherInfo
impl RefUnwindSafe for FatherInfo
impl Send for FatherInfo
impl Sync for FatherInfo
impl Unpin for FatherInfo
impl UnwindSafe for FatherInfo
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