pub enum Ref<'union> {
Bool(&'union bool),
Uint8(&'union u8),
Uint16(&'union WireU16),
Uint32(&'union WireU32),
Uint64(&'union WireU64),
Int8(&'union i8),
Int16(&'union WireI16),
Int32(&'union WireI32),
Int64(&'union WireI64),
String(&'union WireString),
UnknownOrdinal_(u64),
}
Variants§
Bool(&'union bool)
Uint8(&'union u8)
Uint16(&'union WireU16)
Uint32(&'union WireU32)
Uint64(&'union WireU64)
Int8(&'union i8)
Int16(&'union WireI16)
Int32(&'union WireI32)
Int64(&'union WireI64)
String(&'union WireString)
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