pub struct HierarchyParams {
pub unit_id: u64,
pub include_ancestors: bool,
pub include_descendants: bool,
}Expand description
Parameters for Query 5: Type Hierarchy.
Fields§
§unit_id: u64The type unit to inspect.
include_ancestors: boolWhether to include ancestors.
include_descendants: boolWhether to include descendants.
Trait Implementations§
Source§impl Clone for HierarchyParams
impl Clone for HierarchyParams
Source§fn clone(&self) -> HierarchyParams
fn clone(&self) -> HierarchyParams
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 moreAuto Trait Implementations§
impl Freeze for HierarchyParams
impl RefUnwindSafe for HierarchyParams
impl Send for HierarchyParams
impl Sync for HierarchyParams
impl Unpin for HierarchyParams
impl UnsafeUnpin for HierarchyParams
impl UnwindSafe for HierarchyParams
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