pub enum AnyObject {
Other(Object),
Device(Device),
Entity(Entity),
Source(Source),
Destination(Destination),
ExternalDevice(Device),
ExternalEntity(Entity),
ExternalSource(Source),
ExternalDestination(Destination),
}Variants§
Other(Object)
Device(Device)
Entity(Entity)
Source(Source)
Destination(Destination)
ExternalDevice(Device)
ExternalEntity(Entity)
ExternalSource(Source)
ExternalDestination(Destination)
Trait Implementations§
impl Eq for AnyObject
impl StructuralPartialEq for AnyObject
Auto Trait Implementations§
impl Freeze for AnyObject
impl RefUnwindSafe for AnyObject
impl Send for AnyObject
impl Sync for AnyObject
impl Unpin for AnyObject
impl UnwindSafe for AnyObject
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