pub struct TBytesReader<B: TBytesReaderBackend> { /* private fields */ }
Expand description

Reads primitive types and arrays of primitive types from TBytesReaderBackend.

Implementations§

source§

impl<B: TBytesReaderBackend> TBytesReader<B>

source

pub fn new(backend: B) -> Self

Default constructor.

Trait Implementations§

source§

impl<B: Clone + TBytesReaderBackend> Clone for TBytesReader<B>

source§

fn clone(&self) -> TBytesReader<B>

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl<B: Debug + TBytesReaderBackend> Debug for TBytesReader<B>

source§

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

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

impl<'de, B> Deserialize<'de> for TBytesReader<B>

source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl<'a> From<&'a [u8]> for TBytesReader<TBytesReaderSliceBackend<'a>>

source§

fn from(value: &'a [u8]) -> Self

Constructs TBytesReader from provided slice.

§Examples
use tbytes::{TBytesReader, TBytesReaderFor};

let buffer = [255, 1];
let reader = TBytesReader::from(buffer.as_slice());

let val: u16 = reader.read().unwrap();
assert_eq!(val, 511);
source§

impl<B> Serialize for TBytesReader<B>

source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
source§

impl<B: TBytesReaderBackend> TBytesReaderFor<f32> for TBytesReader<B>

source§

fn read(&self) -> Result<f32, TBytesError>

Reads value of type T.
source§

fn read_array<const N: usize>(&self) -> Result<[f32; N], TBytesError>

Reads array of values of type T. Read more
source§

impl<B: TBytesReaderBackend> TBytesReaderFor<f64> for TBytesReader<B>

source§

fn read(&self) -> Result<f64, TBytesError>

Reads value of type T.
source§

fn read_array<const N: usize>(&self) -> Result<[f64; N], TBytesError>

Reads array of values of type T. Read more
source§

impl<B: TBytesReaderBackend> TBytesReaderFor<i128> for TBytesReader<B>

source§

fn read(&self) -> Result<i128, TBytesError>

Reads value of type T.
source§

fn read_array<const N: usize>(&self) -> Result<[i128; N], TBytesError>

Reads array of values of type T. Read more
source§

impl<B: TBytesReaderBackend> TBytesReaderFor<i16> for TBytesReader<B>

source§

fn read(&self) -> Result<i16, TBytesError>

Reads value of type T.
source§

fn read_array<const N: usize>(&self) -> Result<[i16; N], TBytesError>

Reads array of values of type T. Read more
source§

impl<B: TBytesReaderBackend> TBytesReaderFor<i32> for TBytesReader<B>

source§

fn read(&self) -> Result<i32, TBytesError>

Reads value of type T.
source§

fn read_array<const N: usize>(&self) -> Result<[i32; N], TBytesError>

Reads array of values of type T. Read more
source§

impl<B: TBytesReaderBackend> TBytesReaderFor<i64> for TBytesReader<B>

source§

fn read(&self) -> Result<i64, TBytesError>

Reads value of type T.
source§

fn read_array<const N: usize>(&self) -> Result<[i64; N], TBytesError>

Reads array of values of type T. Read more
source§

impl<B: TBytesReaderBackend> TBytesReaderFor<i8> for TBytesReader<B>

source§

fn read(&self) -> Result<i8, TBytesError>

Reads value of type T.
source§

fn read_array<const N: usize>(&self) -> Result<[i8; N], TBytesError>

Reads array of values of type T. Read more
source§

impl<B: TBytesReaderBackend> TBytesReaderFor<u128> for TBytesReader<B>

source§

fn read(&self) -> Result<u128, TBytesError>

Reads value of type T.
source§

fn read_array<const N: usize>(&self) -> Result<[u128; N], TBytesError>

Reads array of values of type T. Read more
source§

impl<B: TBytesReaderBackend> TBytesReaderFor<u16> for TBytesReader<B>

source§

fn read(&self) -> Result<u16, TBytesError>

Reads value of type T.
source§

fn read_array<const N: usize>(&self) -> Result<[u16; N], TBytesError>

Reads array of values of type T. Read more
source§

impl<B: TBytesReaderBackend> TBytesReaderFor<u32> for TBytesReader<B>

source§

fn read(&self) -> Result<u32, TBytesError>

Reads value of type T.
source§

fn read_array<const N: usize>(&self) -> Result<[u32; N], TBytesError>

Reads array of values of type T. Read more
source§

impl<B: TBytesReaderBackend> TBytesReaderFor<u64> for TBytesReader<B>

source§

fn read(&self) -> Result<u64, TBytesError>

Reads value of type T.
source§

fn read_array<const N: usize>(&self) -> Result<[u64; N], TBytesError>

Reads array of values of type T. Read more
source§

impl<B: TBytesReaderBackend> TBytesReaderFor<u8> for TBytesReader<B>

source§

fn read(&self) -> Result<u8, TBytesError>

Reads value of type T.
source§

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

Reads array of values of type T. Read more

Auto Trait Implementations§

§

impl<B> Freeze for TBytesReader<B>
where B: Freeze,

§

impl<B> RefUnwindSafe for TBytesReader<B>
where B: RefUnwindSafe,

§

impl<B> Send for TBytesReader<B>
where B: Send,

§

impl<B> Sync for TBytesReader<B>
where B: Sync,

§

impl<B> Unpin for TBytesReader<B>
where B: Unpin,

§

impl<B> UnwindSafe for TBytesReader<B>
where B: 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<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> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

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

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
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.
source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,