pub enum Ref<'de> {
Parent(&'de WireParentRef),
Self_(&'de WireSelfRef),
Child(&'de WireChildRef<'de>),
Collection(&'de WireCollectionRef<'de>),
Framework(&'de WireFrameworkRef),
Capability(&'de WireCapabilityRef<'de>),
Debug(&'de WireDebugRef),
VoidType(&'de WireVoidRef),
Environment(&'de WireEnvironmentRef),
UnknownOrdinal_(u64),
}
Variants§
Parent(&'de WireParentRef)
Self_(&'de WireSelfRef)
Child(&'de WireChildRef<'de>)
Collection(&'de WireCollectionRef<'de>)
Framework(&'de WireFrameworkRef)
Capability(&'de WireCapabilityRef<'de>)
Debug(&'de WireDebugRef)
VoidType(&'de WireVoidRef)
Environment(&'de WireEnvironmentRef)
UnknownOrdinal_(u64)
Auto Trait Implementations§
impl<'de> Freeze for Ref<'de>
impl<'de> RefUnwindSafe for Ref<'de>
impl<'de> Send for Ref<'de>
impl<'de> Sync for Ref<'de>
impl<'de> Unpin for Ref<'de>
impl<'de> UnwindSafe for Ref<'de>
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