Enum candid::parser::value::IDLValue[][src]

pub enum IDLValue {
Show 25 variants Bool(bool), Null, Text(String), Number(String), Float64(f64), Opt(Box<IDLValue>), Vec(Vec<IDLValue>), Record(Vec<IDLField>), Variant(VariantValue), Principal(Principal), Service(Principal), Func(PrincipalString), None, Int(Int), Nat(Nat), Nat8(u8), Nat16(u16), Nat32(u32), Nat64(u64), Int8(i8), Int16(i16), Int32(i32), Int64(i64), Float32(f32), Reserved,
}

Variants

Bool(bool)

Tuple Fields

0: bool

Null

Text(String)

Tuple Fields

0: String

Number(String)

Tuple Fields

0: String

Float64(f64)

Tuple Fields

0: f64

Opt(Box<IDLValue>)

Tuple Fields

Vec(Vec<IDLValue>)

Tuple Fields

Record(Vec<IDLField>)

Tuple Fields

Variant(VariantValue)

Tuple Fields

Principal(Principal)

Tuple Fields

Service(Principal)

Tuple Fields

Func(PrincipalString)

Tuple Fields

1: String

None

Int(Int)

Tuple Fields

0: Int

Nat(Nat)

Tuple Fields

0: Nat

Nat8(u8)

Tuple Fields

0: u8

Nat16(u16)

Tuple Fields

0: u16

Nat32(u32)

Tuple Fields

0: u32

Nat64(u64)

Tuple Fields

0: u64

Int8(i8)

Tuple Fields

0: i8

Int16(i16)

Tuple Fields

0: i16

Int32(i32)

Tuple Fields

0: i32

Int64(i64)

Tuple Fields

0: i64

Float32(f32)

Tuple Fields

0: f32

Reserved

Implementations

Anotate IDLValue with the given type, allowing subtyping. If IDLValue is parsed from string, we need to set from_parser to true to enable converting numbers to the expected types, and disable the opt rules.

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Deserialize this value from the given Serde deserializer. Read more

Formats the value using the given formatter. Read more

The associated error which can be returned from parsing.

Parses a string s to return a value of this type. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

Should always be Self

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

Uses borrowed data to replace owned data, usually by cloning. Read more

Converts the given value to a String. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.