pub enum Value<'de> {
BoolVector(Vector<'de, bool>),
Uint8Vector(Vector<'de, u8>),
Uint16Vector(Vector<'de, Uint16>),
Uint32Vector(Vector<'de, Uint32>),
Uint64Vector(Vector<'de, Uint64>),
Int8Vector(Vector<'de, i8>),
Int16Vector(Vector<'de, Int16>),
Int32Vector(Vector<'de, Int32>),
Int64Vector(Vector<'de, Int64>),
StringVector(Vector<'de, String<'de>>),
UnknownOrdinal_(u64),
}Variants§
BoolVector(Vector<'de, bool>)
Uint8Vector(Vector<'de, u8>)
Uint16Vector(Vector<'de, Uint16>)
Uint32Vector(Vector<'de, Uint32>)
Uint64Vector(Vector<'de, Uint64>)
Int8Vector(Vector<'de, i8>)
Int16Vector(Vector<'de, Int16>)
Int32Vector(Vector<'de, Int32>)
Int64Vector(Vector<'de, Int64>)
StringVector(Vector<'de, String<'de>>)
UnknownOrdinal_(u64)
Auto Trait Implementations§
impl<'de> Freeze for Value<'de>
impl<'de> RefUnwindSafe for Value<'de>
impl<'de> Send for Value<'de>
impl<'de> Sync for Value<'de>
impl<'de> Unpin for Value<'de>
impl<'de> UnsafeUnpin for Value<'de>
impl<'de> !UnwindSafe for Value<'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
§impl<T> InstanceFromServiceTransport<T> for T
impl<T> InstanceFromServiceTransport<T> for T
§fn from_service_transport(handle: T) -> T
fn from_service_transport(handle: T) -> T
Converts the given service transport handle of type
T to [Self]