#[non_exhaustive]pub enum Hierarchy {
FullHierarchy(bool),
HierarchyDepth(i32),
}
Expand description
The depth of the retrieved hierarchy of data objects.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
FullHierarchy(bool)
Whether to retrieve the full hierarchy of data objects (TRUE) or only the current level (FALSE).
HierarchyDepth(i32)
The number of hierarchy levels below the current level to be retrieved.
Trait Implementations§
impl StructuralPartialEq for Hierarchy
Auto Trait Implementations§
impl Freeze for Hierarchy
impl RefUnwindSafe for Hierarchy
impl Send for Hierarchy
impl Sync for Hierarchy
impl Unpin for Hierarchy
impl UnwindSafe for Hierarchy
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