Struct concordium_std::Parameter[][src]

pub struct Parameter { /* fields omitted */ }
Expand description

A type representing the parameter to init and receive methods.

Trait Implementations

impl Default for Parameter[src]

fn default() -> Parameter[src]

Returns the “default value” for a type. Read more

impl HasParameter for Parameter[src]

fn size(&self) -> u32[src]

Get the size of the parameter to the method.

impl Read for Parameter[src]

fn read(&mut self, buf: &mut [u8]) -> ParseResult<usize>[src]

Read a number of bytes into the provided buffer. The returned value is Ok(n) if a read was successful, and n bytes were read (n could be 0). Read more

fn read_exact(&mut self, buf: &mut [u8]) -> Result<(), ParseError>[src]

Read exactly the required number of bytes. If not enough bytes could be read the function returns Err(_), and the contents of the given buffer is unspecified. Read more

fn read_u64(&mut self) -> Result<u64, ParseError>[src]

Read a u64 in little-endian format.

fn read_u32(&mut self) -> Result<u32, ParseError>[src]

Read a u32 in little-endian format.

fn read_u16(&mut self) -> Result<u16, ParseError>[src]

Read a u16 in little-endian format.

fn read_u8(&mut self) -> Result<u8, ParseError>[src]

Read a u8.

fn read_i64(&mut self) -> Result<i64, ParseError>[src]

Read a i64 in little-endian format.

fn read_i32(&mut self) -> Result<i32, ParseError>[src]

Read a i32 in little-endian format.

fn read_i16(&mut self) -> Result<i16, ParseError>[src]

Read a i16 in little-endian format.

fn read_i8(&mut self) -> Result<i8, ParseError>[src]

Read a i32 in little-endian format.

Auto Trait Implementations

Blanket Implementations

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

pub fn type_id(&self) -> TypeId[src]

Gets the TypeId of self. Read more

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

pub fn borrow(&self) -> &T[src]

Immutably borrows from an owned value. Read more

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

pub fn borrow_mut(&mut self) -> &mut T[src]

Mutably borrows from an owned value. Read more

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

pub fn from(t: T) -> T[src]

Performs the conversion.

impl<R, T> Get<T> for R where
    T: Deserial,
    R: Read
[src]

pub fn get(&mut self) -> Result<T, ParseError>[src]

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

pub fn into(self) -> U[src]

Performs the conversion.

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.

pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]

Performs the conversion.

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.

pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]

Performs the conversion.