pub enum OutputValue {
Show 24 variants
Account(Account),
Blob(Vec<u8>),
Bool(bool),
Date(Date),
Decimal(Decimal),
Duration(Duration),
Enum(OutputValueEnum),
Float32(Float32),
Float64(Float64),
Int(i64),
Int128(Int128),
IntBig(Int),
List(Vec<OutputValue>),
Map(Vec<(OutputValue, OutputValue)>),
Null,
Principal(Principal),
Subaccount(Subaccount),
Text(String),
Timestamp(Timestamp),
Uint(u64),
Uint128(Nat128),
UintBig(Nat),
Ulid(Ulid),
Unit,
}Variants§
Account(Account)
Blob(Vec<u8>)
Bool(bool)
Date(Date)
Decimal(Decimal)
Duration(Duration)
Enum(OutputValueEnum)
Float32(Float32)
Float64(Float64)
Int(i64)
Int128(Int128)
IntBig(Int)
List(Vec<OutputValue>)
Map(Vec<(OutputValue, OutputValue)>)
Null
Principal(Principal)
Subaccount(Subaccount)
Text(String)
Timestamp(Timestamp)
Uint(u64)
Uint128(Nat128)
UintBig(Nat)
Ulid(Ulid)
Unit
Trait Implementations§
Source§impl CandidType for OutputValue
impl CandidType for OutputValue
Source§impl Clone for OutputValue
impl Clone for OutputValue
Source§fn clone(&self) -> OutputValue
fn clone(&self) -> OutputValue
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for OutputValue
impl Debug for OutputValue
Source§impl<'de> Deserialize<'de> for OutputValue
impl<'de> Deserialize<'de> for OutputValue
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<OutputValue, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<OutputValue, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<&Value> for OutputValue
impl From<&Value> for OutputValue
Source§fn from(value: &Value) -> OutputValue
fn from(value: &Value) -> OutputValue
Converts to this type from the input type.
Source§impl From<Value> for OutputValue
impl From<Value> for OutputValue
Source§fn from(value: Value) -> OutputValue
fn from(value: Value) -> OutputValue
Converts to this type from the input type.
Source§impl PartialEq for OutputValue
impl PartialEq for OutputValue
impl Eq for OutputValue
impl StructuralPartialEq for OutputValue
Auto Trait Implementations§
impl Freeze for OutputValue
impl RefUnwindSafe for OutputValue
impl Send for OutputValue
impl Sync for OutputValue
impl Unpin for OutputValue
impl UnsafeUnpin for OutputValue
impl UnwindSafe for OutputValue
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