Struct concordium_std::Chain

source ·
pub struct Chain<T, U> { /* private fields */ }
Expand description

Adapter to chain together two readers.

Implementations§

source§

impl<T, U> Chain<T, U>

source

pub fn new(first: T, second: U) -> Chain<T, U>

Construct a reader by chaining to readers together.

Trait Implementations§

source§

impl<T, U> Debug for Chain<T, U>
where T: Debug, U: Debug,

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
source§

impl<'a, 'b, T, U> Read for Chain<&'a mut T, &'b mut U>
where T: Read, U: Read,

source§

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

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).
source§

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

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.
source§

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

Read a u64 in little-endian format.
source§

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

Read a u32 in little-endian format.
source§

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

Read a u16 in little-endian format.
source§

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

Read a u8.
source§

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

Read a i64 in little-endian format.
source§

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

Read a i32 in little-endian format.
source§

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

Read a i16 in little-endian format.
source§

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

Read a i32 in little-endian format.
source§

fn read_array<const N: usize>(&mut self) -> Result<[u8; N], ParseError>

Load an array of the given size.

Auto Trait Implementations§

§

impl<T, U> RefUnwindSafe for Chain<T, U>

§

impl<T, U> Send for Chain<T, U>
where T: Send, U: Send,

§

impl<T, U> Sync for Chain<T, U>
where T: Sync, U: Sync,

§

impl<T, U> Unpin for Chain<T, U>
where T: Unpin, U: Unpin,

§

impl<T, U> UnwindSafe for Chain<T, U>
where T: UnwindSafe, U: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

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

source§

fn get(&mut self) -> Result<T, ParseError>

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

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

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

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

Performs the conversion.