Struct candid::parser::value::IDLArgs[][src]

pub struct IDLArgs {
    pub args: Vec<IDLValue>,
}

Fields

args: Vec<IDLValue>

Implementations

impl IDLArgs[src]

pub fn new(args: &[IDLValue]) -> Self[src]

pub fn annotate_types(
    self,
    from_parser: bool,
    env: &TypeEnv,
    types: &[Type]
) -> Result<Self>
[src]

pub fn to_bytes_with_types(
    &self,
    env: &TypeEnv,
    types: &[Type]
) -> Result<Vec<u8>>
[src]

Encode IDLArgs with the given types. Note that this is not equivalent to idl_args.annotate_types(true, env, types).to_bytes() for recursive types.

pub fn to_bytes(&self) -> Result<Vec<u8>>[src]

pub fn from_bytes_with_types(
    bytes: &[u8],
    env: &TypeEnv,
    types: &[Type]
) -> Result<Self>
[src]

pub fn from_bytes(bytes: &[u8]) -> Result<Self>[src]

Trait Implementations

impl Clone for IDLArgs[src]

impl Debug for IDLArgs[src]

impl Display for IDLArgs[src]

impl FromStr for IDLArgs[src]

type Err = Error

The associated error which can be returned from parsing.

impl PartialEq<IDLArgs> for IDLArgs[src]

impl StructuralPartialEq for IDLArgs[src]

Auto Trait Implementations

impl RefUnwindSafe for IDLArgs

impl Send for IDLArgs

impl Sync for IDLArgs

impl Unpin for IDLArgs

impl UnwindSafe for IDLArgs

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.