pub enum AnyHandle {
Hierarchy(HierarchyHandle),
Logic(LogicHandle),
Other,
}Variants§
Implementations§
Source§impl AnyHandle
impl AnyHandle
pub fn as_logic(self) -> Option<LogicHandle>
pub fn as_hierarchy(self) -> Option<HierarchyHandle>
Trait Implementations§
Auto Trait Implementations§
impl !Send for AnyHandle
impl !Sync for AnyHandle
impl Freeze for AnyHandle
impl RefUnwindSafe for AnyHandle
impl Unpin for AnyHandle
impl UnsafeUnpin for AnyHandle
impl UnwindSafe for AnyHandle
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