pub struct GroupSiblings {
pub group: usize,
pub siblings: Vec<StructuralSibling>,
}Expand description
Siblings of one primary group, addressed by its index in
StructuralReport::groups.
Fields§
§group: usizeIndex of the owning primary group.
siblings: Vec<StructuralSibling>Siblings in deterministic unit-fingerprint order.
Trait Implementations§
Source§impl Clone for GroupSiblings
impl Clone for GroupSiblings
Source§fn clone(&self) -> GroupSiblings
fn clone(&self) -> GroupSiblings
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 GroupSiblings
impl Debug for GroupSiblings
Source§impl PartialEq for GroupSiblings
impl PartialEq for GroupSiblings
impl StructuralPartialEq for GroupSiblings
Auto Trait Implementations§
impl Freeze for GroupSiblings
impl RefUnwindSafe for GroupSiblings
impl Send for GroupSiblings
impl Sync for GroupSiblings
impl Unpin for GroupSiblings
impl UnsafeUnpin for GroupSiblings
impl UnwindSafe for GroupSiblings
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