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