pub struct EdgeExpansionSlotRows {
pub slot: String,
pub roots: Vec<EdgeExpansionRootRows>,
}Expand description
All edge-expansion results for a single named slot across all roots.
Derives PartialEq only — transitive through EdgeRow.
Fields§
§slot: StringName of the edge-expansion slot.
roots: Vec<EdgeExpansionRootRows>Per-root edge-expansion results.
Trait Implementations§
Source§impl Clone for EdgeExpansionSlotRows
impl Clone for EdgeExpansionSlotRows
Source§fn clone(&self) -> EdgeExpansionSlotRows
fn clone(&self) -> EdgeExpansionSlotRows
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 EdgeExpansionSlotRows
impl Debug for EdgeExpansionSlotRows
Source§impl PartialEq for EdgeExpansionSlotRows
impl PartialEq for EdgeExpansionSlotRows
impl StructuralPartialEq for EdgeExpansionSlotRows
Auto Trait Implementations§
impl Freeze for EdgeExpansionSlotRows
impl RefUnwindSafe for EdgeExpansionSlotRows
impl Send for EdgeExpansionSlotRows
impl Sync for EdgeExpansionSlotRows
impl Unpin for EdgeExpansionSlotRows
impl UnsafeUnpin for EdgeExpansionSlotRows
impl UnwindSafe for EdgeExpansionSlotRows
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