Struct CodecBe

Source
pub struct CodecBe<W> { /* private fields */ }
Expand description

Encodes and decodes a number in big-endian order.

§Example

use devela::{Encodable, CodecBe};

let mut buf = [0u8; 32];
let len = CodecBe::new(1u16).encode(&mut &mut buf[..]).unwrap();
assert_eq!(&buf[..len], &[0, 1], "the most significant byte comes first");

let mut buf = Vec::<u8>::new();
CodecBe::new(1u16).encode(&mut buf).unwrap();
assert_eq!(&buf, &[0, 1]);

§Vendored

This is adapted work from encode.

Implementations§

Source§

impl<W> CodecBe<W>

Source

pub const fn new(num: W) -> Self

Creates a new CodecBe combinator.

Trait Implementations§

Source§

impl<W: Clone> Clone for CodecBe<W>

Source§

fn clone(&self) -> CodecBe<W>

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<W: Debug> Debug for CodecBe<W>

Source§

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

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

impl<R: IoRead> Decodable<R> for CodecBe<NonZero<i128>>

Source§

type Output = NonZero<i128>

The type produced when decoding.
Source§

fn decode(reader: &mut R) -> IoResult<NonZero<i128>>

Decodes Self from the given reader, returning the decoded value. Read more
Source§

impl<R: IoRead> Decodable<R> for CodecBe<NonZero<i16>>

Source§

type Output = NonZero<i16>

The type produced when decoding.
Source§

fn decode(reader: &mut R) -> IoResult<NonZero<i16>>

Decodes Self from the given reader, returning the decoded value. Read more
Source§

impl<R: IoRead> Decodable<R> for CodecBe<NonZero<i32>>

Source§

type Output = NonZero<i32>

The type produced when decoding.
Source§

fn decode(reader: &mut R) -> IoResult<NonZero<i32>>

Decodes Self from the given reader, returning the decoded value. Read more
Source§

impl<R: IoRead> Decodable<R> for CodecBe<NonZero<i64>>

Source§

type Output = NonZero<i64>

The type produced when decoding.
Source§

fn decode(reader: &mut R) -> IoResult<NonZero<i64>>

Decodes Self from the given reader, returning the decoded value. Read more
Source§

impl<R: IoRead> Decodable<R> for CodecBe<NonZero<i8>>

Source§

type Output = NonZero<i8>

The type produced when decoding.
Source§

fn decode(reader: &mut R) -> IoResult<NonZero<i8>>

Decodes Self from the given reader, returning the decoded value. Read more
Source§

impl<R: IoRead> Decodable<R> for CodecBe<NonZero<isize>>

Source§

type Output = NonZero<isize>

The type produced when decoding.
Source§

fn decode(reader: &mut R) -> IoResult<NonZero<isize>>

Decodes Self from the given reader, returning the decoded value. Read more
Source§

impl<R: IoRead> Decodable<R> for CodecBe<NonZero<u128>>

Source§

type Output = NonZero<u128>

The type produced when decoding.
Source§

fn decode(reader: &mut R) -> IoResult<NonZero<u128>>

Decodes Self from the given reader, returning the decoded value. Read more
Source§

impl<R: IoRead> Decodable<R> for CodecBe<NonZero<u16>>

Source§

type Output = NonZero<u16>

The type produced when decoding.
Source§

fn decode(reader: &mut R) -> IoResult<NonZero<u16>>

Decodes Self from the given reader, returning the decoded value. Read more
Source§

impl<R: IoRead> Decodable<R> for CodecBe<NonZero<u32>>

Source§

type Output = NonZero<u32>

The type produced when decoding.
Source§

fn decode(reader: &mut R) -> IoResult<NonZero<u32>>

Decodes Self from the given reader, returning the decoded value. Read more
Source§

impl<R: IoRead> Decodable<R> for CodecBe<NonZero<u64>>

Source§

type Output = NonZero<u64>

The type produced when decoding.
Source§

fn decode(reader: &mut R) -> IoResult<NonZero<u64>>

Decodes Self from the given reader, returning the decoded value. Read more
Source§

impl<R: IoRead> Decodable<R> for CodecBe<NonZero<u8>>

Source§

type Output = NonZero<u8>

The type produced when decoding.
Source§

fn decode(reader: &mut R) -> IoResult<NonZero<u8>>

Decodes Self from the given reader, returning the decoded value. Read more
Source§

impl<R: IoRead> Decodable<R> for CodecBe<NonZero<usize>>

Source§

type Output = NonZero<usize>

The type produced when decoding.
Source§

fn decode(reader: &mut R) -> IoResult<NonZero<usize>>

Decodes Self from the given reader, returning the decoded value. Read more
Source§

impl<R: IoRead> Decodable<R> for CodecBe<f32>

Source§

type Output = f32

The type produced when decoding.
Source§

fn decode(reader: &mut R) -> IoResult<f32>

Decodes Self from the given reader, returning the decoded value. Read more
Source§

impl<R: IoRead> Decodable<R> for CodecBe<f64>

Source§

type Output = f64

The type produced when decoding.
Source§

fn decode(reader: &mut R) -> IoResult<f64>

Decodes Self from the given reader, returning the decoded value. Read more
Source§

impl<R: IoRead> Decodable<R> for CodecBe<i128>

Source§

type Output = i128

The type produced when decoding.
Source§

fn decode(reader: &mut R) -> IoResult<i128>

Decodes Self from the given reader, returning the decoded value. Read more
Source§

impl<R: IoRead> Decodable<R> for CodecBe<i16>

Source§

type Output = i16

The type produced when decoding.
Source§

fn decode(reader: &mut R) -> IoResult<i16>

Decodes Self from the given reader, returning the decoded value. Read more
Source§

impl<R: IoRead> Decodable<R> for CodecBe<i32>

Source§

type Output = i32

The type produced when decoding.
Source§

fn decode(reader: &mut R) -> IoResult<i32>

Decodes Self from the given reader, returning the decoded value. Read more
Source§

impl<R: IoRead> Decodable<R> for CodecBe<i64>

Source§

type Output = i64

The type produced when decoding.
Source§

fn decode(reader: &mut R) -> IoResult<i64>

Decodes Self from the given reader, returning the decoded value. Read more
Source§

impl<R: IoRead> Decodable<R> for CodecBe<i8>

Source§

type Output = i8

The type produced when decoding.
Source§

fn decode(reader: &mut R) -> IoResult<i8>

Decodes Self from the given reader, returning the decoded value. Read more
Source§

impl<R: IoRead> Decodable<R> for CodecBe<isize>

Source§

type Output = isize

The type produced when decoding.
Source§

fn decode(reader: &mut R) -> IoResult<isize>

Decodes Self from the given reader, returning the decoded value. Read more
Source§

impl<R: IoRead> Decodable<R> for CodecBe<u128>

Source§

type Output = u128

The type produced when decoding.
Source§

fn decode(reader: &mut R) -> IoResult<u128>

Decodes Self from the given reader, returning the decoded value. Read more
Source§

impl<R: IoRead> Decodable<R> for CodecBe<u16>

Source§

type Output = u16

The type produced when decoding.
Source§

fn decode(reader: &mut R) -> IoResult<u16>

Decodes Self from the given reader, returning the decoded value. Read more
Source§

impl<R: IoRead> Decodable<R> for CodecBe<u32>

Source§

type Output = u32

The type produced when decoding.
Source§

fn decode(reader: &mut R) -> IoResult<u32>

Decodes Self from the given reader, returning the decoded value. Read more
Source§

impl<R: IoRead> Decodable<R> for CodecBe<u64>

Source§

type Output = u64

The type produced when decoding.
Source§

fn decode(reader: &mut R) -> IoResult<u64>

Decodes Self from the given reader, returning the decoded value. Read more
Source§

impl<R: IoRead> Decodable<R> for CodecBe<u8>

Source§

type Output = u8

The type produced when decoding.
Source§

fn decode(reader: &mut R) -> IoResult<u8>

Decodes Self from the given reader, returning the decoded value. Read more
Source§

impl<R: IoRead> Decodable<R> for CodecBe<usize>

Source§

type Output = usize

The type produced when decoding.
Source§

fn decode(reader: &mut R) -> IoResult<usize>

Decodes Self from the given reader, returning the decoded value. Read more
Source§

impl<W: IoWrite> Encodable<W> for CodecBe<NonZero<i128>>

Source§

fn encode(&self, writer: &mut W) -> IoResult<usize>

Encodes self into the given writer, returning the bytes written. Read more
Source§

impl<W: IoWrite> Encodable<W> for CodecBe<NonZero<i16>>

Source§

fn encode(&self, writer: &mut W) -> IoResult<usize>

Encodes self into the given writer, returning the bytes written. Read more
Source§

impl<W: IoWrite> Encodable<W> for CodecBe<NonZero<i32>>

Source§

fn encode(&self, writer: &mut W) -> IoResult<usize>

Encodes self into the given writer, returning the bytes written. Read more
Source§

impl<W: IoWrite> Encodable<W> for CodecBe<NonZero<i64>>

Source§

fn encode(&self, writer: &mut W) -> IoResult<usize>

Encodes self into the given writer, returning the bytes written. Read more
Source§

impl<W: IoWrite> Encodable<W> for CodecBe<NonZero<i8>>

Source§

fn encode(&self, writer: &mut W) -> IoResult<usize>

Encodes self into the given writer, returning the bytes written. Read more
Source§

impl<W: IoWrite> Encodable<W> for CodecBe<NonZero<isize>>

Source§

fn encode(&self, writer: &mut W) -> IoResult<usize>

Encodes self into the given writer, returning the bytes written. Read more
Source§

impl<W: IoWrite> Encodable<W> for CodecBe<NonZero<u128>>

Source§

fn encode(&self, writer: &mut W) -> IoResult<usize>

Encodes self into the given writer, returning the bytes written. Read more
Source§

impl<W: IoWrite> Encodable<W> for CodecBe<NonZero<u16>>

Source§

fn encode(&self, writer: &mut W) -> IoResult<usize>

Encodes self into the given writer, returning the bytes written. Read more
Source§

impl<W: IoWrite> Encodable<W> for CodecBe<NonZero<u32>>

Source§

fn encode(&self, writer: &mut W) -> IoResult<usize>

Encodes self into the given writer, returning the bytes written. Read more
Source§

impl<W: IoWrite> Encodable<W> for CodecBe<NonZero<u64>>

Source§

fn encode(&self, writer: &mut W) -> IoResult<usize>

Encodes self into the given writer, returning the bytes written. Read more
Source§

impl<W: IoWrite> Encodable<W> for CodecBe<NonZero<u8>>

Source§

fn encode(&self, writer: &mut W) -> IoResult<usize>

Encodes self into the given writer, returning the bytes written. Read more
Source§

impl<W: IoWrite> Encodable<W> for CodecBe<NonZero<usize>>

Source§

fn encode(&self, writer: &mut W) -> IoResult<usize>

Encodes self into the given writer, returning the bytes written. Read more
Source§

impl<W: IoWrite> Encodable<W> for CodecBe<f32>

Source§

fn encode(&self, writer: &mut W) -> IoResult<usize>

Encodes self into the given writer, returning the bytes written. Read more
Source§

impl<W: IoWrite> Encodable<W> for CodecBe<f64>

Source§

fn encode(&self, writer: &mut W) -> IoResult<usize>

Encodes self into the given writer, returning the bytes written. Read more
Source§

impl<W: IoWrite> Encodable<W> for CodecBe<i128>

Source§

fn encode(&self, writer: &mut W) -> IoResult<usize>

Encodes self into the given writer, returning the bytes written. Read more
Source§

impl<W: IoWrite> Encodable<W> for CodecBe<i16>

Source§

fn encode(&self, writer: &mut W) -> IoResult<usize>

Encodes self into the given writer, returning the bytes written. Read more
Source§

impl<W: IoWrite> Encodable<W> for CodecBe<i32>

Source§

fn encode(&self, writer: &mut W) -> IoResult<usize>

Encodes self into the given writer, returning the bytes written. Read more
Source§

impl<W: IoWrite> Encodable<W> for CodecBe<i64>

Source§

fn encode(&self, writer: &mut W) -> IoResult<usize>

Encodes self into the given writer, returning the bytes written. Read more
Source§

impl<W: IoWrite> Encodable<W> for CodecBe<i8>

Source§

fn encode(&self, writer: &mut W) -> IoResult<usize>

Encodes self into the given writer, returning the bytes written. Read more
Source§

impl<W: IoWrite> Encodable<W> for CodecBe<isize>

Source§

fn encode(&self, writer: &mut W) -> IoResult<usize>

Encodes self into the given writer, returning the bytes written. Read more
Source§

impl<W: IoWrite> Encodable<W> for CodecBe<u128>

Source§

fn encode(&self, writer: &mut W) -> IoResult<usize>

Encodes self into the given writer, returning the bytes written. Read more
Source§

impl<W: IoWrite> Encodable<W> for CodecBe<u16>

Source§

fn encode(&self, writer: &mut W) -> IoResult<usize>

Encodes self into the given writer, returning the bytes written. Read more
Source§

impl<W: IoWrite> Encodable<W> for CodecBe<u32>

Source§

fn encode(&self, writer: &mut W) -> IoResult<usize>

Encodes self into the given writer, returning the bytes written. Read more
Source§

impl<W: IoWrite> Encodable<W> for CodecBe<u64>

Source§

fn encode(&self, writer: &mut W) -> IoResult<usize>

Encodes self into the given writer, returning the bytes written. Read more
Source§

impl<W: IoWrite> Encodable<W> for CodecBe<u8>

Source§

fn encode(&self, writer: &mut W) -> IoResult<usize>

Encodes self into the given writer, returning the bytes written. Read more
Source§

impl<W: IoWrite> Encodable<W> for CodecBe<usize>

Source§

fn encode(&self, writer: &mut W) -> IoResult<usize>

Encodes self into the given writer, returning the bytes written. Read more
Source§

impl From<CodecBe<NonZero<i128>>> for NonZero<i128>

Source§

fn from(be: CodecBe<NonZero<i128>>) -> Self

Converts to this type from the input type.
Source§

impl From<CodecBe<NonZero<i16>>> for NonZero<i16>

Source§

fn from(be: CodecBe<NonZero<i16>>) -> Self

Converts to this type from the input type.
Source§

impl From<CodecBe<NonZero<i32>>> for NonZero<i32>

Source§

fn from(be: CodecBe<NonZero<i32>>) -> Self

Converts to this type from the input type.
Source§

impl From<CodecBe<NonZero<i64>>> for NonZero<i64>

Source§

fn from(be: CodecBe<NonZero<i64>>) -> Self

Converts to this type from the input type.
Source§

impl From<CodecBe<NonZero<i8>>> for NonZero<i8>

Source§

fn from(be: CodecBe<NonZero<i8>>) -> Self

Converts to this type from the input type.
Source§

impl From<CodecBe<NonZero<isize>>> for NonZero<isize>

Source§

fn from(be: CodecBe<NonZero<isize>>) -> Self

Converts to this type from the input type.
Source§

impl From<CodecBe<NonZero<u128>>> for NonZero<u128>

Source§

fn from(be: CodecBe<NonZero<u128>>) -> Self

Converts to this type from the input type.
Source§

impl From<CodecBe<NonZero<u16>>> for NonZero<u16>

Source§

fn from(be: CodecBe<NonZero<u16>>) -> Self

Converts to this type from the input type.
Source§

impl From<CodecBe<NonZero<u32>>> for NonZero<u32>

Source§

fn from(be: CodecBe<NonZero<u32>>) -> Self

Converts to this type from the input type.
Source§

impl From<CodecBe<NonZero<u64>>> for NonZero<u64>

Source§

fn from(be: CodecBe<NonZero<u64>>) -> Self

Converts to this type from the input type.
Source§

impl From<CodecBe<NonZero<u8>>> for NonZero<u8>

Source§

fn from(be: CodecBe<NonZero<u8>>) -> Self

Converts to this type from the input type.
Source§

impl From<CodecBe<NonZero<usize>>> for NonZero<usize>

Source§

fn from(be: CodecBe<NonZero<usize>>) -> Self

Converts to this type from the input type.
Source§

impl From<CodecBe<f32>> for f32

Source§

fn from(be: CodecBe<f32>) -> Self

Converts to this type from the input type.
Source§

impl From<CodecBe<f64>> for f64

Source§

fn from(be: CodecBe<f64>) -> Self

Converts to this type from the input type.
Source§

impl From<CodecBe<i128>> for i128

Source§

fn from(be: CodecBe<i128>) -> Self

Converts to this type from the input type.
Source§

impl From<CodecBe<i16>> for i16

Source§

fn from(be: CodecBe<i16>) -> Self

Converts to this type from the input type.
Source§

impl From<CodecBe<i32>> for i32

Source§

fn from(be: CodecBe<i32>) -> Self

Converts to this type from the input type.
Source§

impl From<CodecBe<i64>> for i64

Source§

fn from(be: CodecBe<i64>) -> Self

Converts to this type from the input type.
Source§

impl From<CodecBe<i8>> for i8

Source§

fn from(be: CodecBe<i8>) -> Self

Converts to this type from the input type.
Source§

impl From<CodecBe<isize>> for isize

Source§

fn from(be: CodecBe<isize>) -> Self

Converts to this type from the input type.
Source§

impl From<CodecBe<u128>> for u128

Source§

fn from(be: CodecBe<u128>) -> Self

Converts to this type from the input type.
Source§

impl From<CodecBe<u16>> for u16

Source§

fn from(be: CodecBe<u16>) -> Self

Converts to this type from the input type.
Source§

impl From<CodecBe<u32>> for u32

Source§

fn from(be: CodecBe<u32>) -> Self

Converts to this type from the input type.
Source§

impl From<CodecBe<u64>> for u64

Source§

fn from(be: CodecBe<u64>) -> Self

Converts to this type from the input type.
Source§

impl From<CodecBe<u8>> for u8

Source§

fn from(be: CodecBe<u8>) -> Self

Converts to this type from the input type.
Source§

impl From<CodecBe<usize>> for usize

Source§

fn from(be: CodecBe<usize>) -> Self

Converts to this type from the input type.
Source§

impl From<NonZero<i128>> for CodecBe<NonZero<i128>>

Source§

fn from(num: NonZero<i128>) -> Self

Converts to this type from the input type.
Source§

impl From<NonZero<i16>> for CodecBe<NonZero<i16>>

Source§

fn from(num: NonZero<i16>) -> Self

Converts to this type from the input type.
Source§

impl From<NonZero<i32>> for CodecBe<NonZero<i32>>

Source§

fn from(num: NonZero<i32>) -> Self

Converts to this type from the input type.
Source§

impl From<NonZero<i64>> for CodecBe<NonZero<i64>>

Source§

fn from(num: NonZero<i64>) -> Self

Converts to this type from the input type.
Source§

impl From<NonZero<i8>> for CodecBe<NonZero<i8>>

Source§

fn from(num: NonZero<i8>) -> Self

Converts to this type from the input type.
Source§

impl From<NonZero<isize>> for CodecBe<NonZero<isize>>

Source§

fn from(num: NonZero<isize>) -> Self

Converts to this type from the input type.
Source§

impl From<NonZero<u128>> for CodecBe<NonZero<u128>>

Source§

fn from(num: NonZero<u128>) -> Self

Converts to this type from the input type.
Source§

impl From<NonZero<u16>> for CodecBe<NonZero<u16>>

Source§

fn from(num: NonZero<u16>) -> Self

Converts to this type from the input type.
Source§

impl From<NonZero<u32>> for CodecBe<NonZero<u32>>

Source§

fn from(num: NonZero<u32>) -> Self

Converts to this type from the input type.
Source§

impl From<NonZero<u64>> for CodecBe<NonZero<u64>>

Source§

fn from(num: NonZero<u64>) -> Self

Converts to this type from the input type.
Source§

impl From<NonZero<u8>> for CodecBe<NonZero<u8>>

Source§

fn from(num: NonZero<u8>) -> Self

Converts to this type from the input type.
Source§

impl From<NonZero<usize>> for CodecBe<NonZero<usize>>

Source§

fn from(num: NonZero<usize>) -> Self

Converts to this type from the input type.
Source§

impl From<f32> for CodecBe<f32>

Source§

fn from(num: f32) -> Self

Converts to this type from the input type.
Source§

impl From<f64> for CodecBe<f64>

Source§

fn from(num: f64) -> Self

Converts to this type from the input type.
Source§

impl From<i128> for CodecBe<i128>

Source§

fn from(num: i128) -> Self

Converts to this type from the input type.
Source§

impl From<i16> for CodecBe<i16>

Source§

fn from(num: i16) -> Self

Converts to this type from the input type.
Source§

impl From<i32> for CodecBe<i32>

Source§

fn from(num: i32) -> Self

Converts to this type from the input type.
Source§

impl From<i64> for CodecBe<i64>

Source§

fn from(num: i64) -> Self

Converts to this type from the input type.
Source§

impl From<i8> for CodecBe<i8>

Source§

fn from(num: i8) -> Self

Converts to this type from the input type.
Source§

impl From<isize> for CodecBe<isize>

Source§

fn from(num: isize) -> Self

Converts to this type from the input type.
Source§

impl From<u128> for CodecBe<u128>

Source§

fn from(num: u128) -> Self

Converts to this type from the input type.
Source§

impl From<u16> for CodecBe<u16>

Source§

fn from(num: u16) -> Self

Converts to this type from the input type.
Source§

impl From<u32> for CodecBe<u32>

Source§

fn from(num: u32) -> Self

Converts to this type from the input type.
Source§

impl From<u64> for CodecBe<u64>

Source§

fn from(num: u64) -> Self

Converts to this type from the input type.
Source§

impl From<u8> for CodecBe<u8>

Source§

fn from(num: u8) -> Self

Converts to this type from the input type.
Source§

impl From<usize> for CodecBe<usize>

Source§

fn from(num: usize) -> Self

Converts to this type from the input type.
Source§

impl<W: Ord> Ord for CodecBe<W>

Source§

fn cmp(&self, other: &CodecBe<W>) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · Source§

fn max(self, other: Self) -> Self
where Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · Source§

fn min(self, other: Self) -> Self
where Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · Source§

fn clamp(self, min: Self, max: Self) -> Self
where Self: Sized,

Restrict a value to a certain interval. Read more
Source§

impl<W: PartialEq> PartialEq for CodecBe<W>

Source§

fn eq(&self, other: &CodecBe<W>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl<W: PartialOrd> PartialOrd for CodecBe<W>

Source§

fn partial_cmp(&self, other: &CodecBe<W>) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · Source§

fn lt(&self, other: &Rhs) -> bool

Tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · Source§

fn le(&self, other: &Rhs) -> bool

Tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · Source§

fn gt(&self, other: &Rhs) -> bool

Tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · Source§

fn ge(&self, other: &Rhs) -> bool

Tests greater than or equal to (for self and other) and is used by the >= operator. Read more
Source§

impl TryFrom<usize> for CodecBe<i128>

Source§

type Error = TryFromIntError

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

fn try_from(value: usize) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl TryFrom<usize> for CodecBe<i16>

Source§

type Error = TryFromIntError

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

fn try_from(value: usize) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl TryFrom<usize> for CodecBe<i32>

Source§

type Error = TryFromIntError

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

fn try_from(value: usize) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl TryFrom<usize> for CodecBe<i64>

Source§

type Error = TryFromIntError

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

fn try_from(value: usize) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl TryFrom<usize> for CodecBe<i8>

Source§

type Error = TryFromIntError

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

fn try_from(value: usize) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl TryFrom<usize> for CodecBe<isize>

Source§

type Error = TryFromIntError

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

fn try_from(value: usize) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl TryFrom<usize> for CodecBe<u128>

Source§

type Error = TryFromIntError

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

fn try_from(value: usize) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl TryFrom<usize> for CodecBe<u16>

Source§

type Error = TryFromIntError

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

fn try_from(value: usize) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl TryFrom<usize> for CodecBe<u32>

Source§

type Error = TryFromIntError

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

fn try_from(value: usize) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl TryFrom<usize> for CodecBe<u64>

Source§

type Error = TryFromIntError

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

fn try_from(value: usize) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl TryFrom<usize> for CodecBe<u8>

Source§

type Error = TryFromIntError

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

fn try_from(value: usize) -> Result<Self, Self::Error>

Performs the conversion.
Source§

impl<W: Eq> Eq for CodecBe<W>

Source§

impl<W> StructuralPartialEq for CodecBe<W>

Auto Trait Implementations§

§

impl<W> Freeze for CodecBe<W>
where W: Freeze,

§

impl<W> RefUnwindSafe for CodecBe<W>
where W: RefUnwindSafe,

§

impl<W> Send for CodecBe<W>
where W: Send,

§

impl<W> Sync for CodecBe<W>
where W: Sync,

§

impl<W> Unpin for CodecBe<W>
where W: Unpin,

§

impl<W> UnwindSafe for CodecBe<W>
where W: 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> ByteSized for T

Source§

const BYTE_ALIGN: usize = _

The alignment of this type in bytes.
Source§

const BYTE_SIZE: usize = _

The size of this type in bytes.
Source§

fn byte_align(&self) -> usize

Returns the alignment of this type in bytes.
Source§

fn byte_size(&self) -> usize

Returns the size of this type in bytes. Read more
Source§

fn ptr_size_ratio(&self) -> [usize; 2]

Returns the size ratio between Ptr::BYTES and BYTE_SIZE. Read more
Source§

impl<T, R> Chain<R> for T
where T: ?Sized,

Source§

fn chain<F>(self, f: F) -> R
where F: FnOnce(Self) -> R, Self: Sized,

Chain a function which takes the parameter by value.
Source§

fn chain_ref<F>(&self, f: F) -> R
where F: FnOnce(&Self) -> R,

Chain a function which takes the parameter by shared reference.
Source§

fn chain_mut<F>(&mut self, f: F) -> R
where F: FnOnce(&mut Self) -> R,

Chain a function which takes the parameter by exclusive reference.
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dst: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
§

impl<Q, K> Comparable<K> for Q
where Q: Ord + ?Sized, K: Borrow<Q> + ?Sized,

§

fn compare(&self, key: &K) -> Ordering

Compare self to key and return their ordering.
Source§

impl<T> EncodableLen for T
where T: Encodable<CodecLen>,

Source§

fn encoded_size(&self) -> IoResult<usize>

Computes the size of self when encoded. Read more
§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
Source§

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

Source§

fn type_id() -> TypeId

Returns the TypeId of Self. Read more
Source§

fn type_of(&self) -> TypeId

Returns the TypeId of self. Read more
Source§

fn type_name(&self) -> &'static str

Returns the type name of self. Read more
Source§

fn type_is<T: 'static>(&self) -> bool

Returns true if Self is of type T. Read more
Source§

fn type_hash(&self) -> u64

Returns a deterministic hash of the TypeId of Self.
Source§

fn type_hash_with<H: Hasher>(&self, hasher: H) -> u64

Returns a deterministic hash of the TypeId of Self using a custom hasher.
Source§

fn as_any_ref(&self) -> &dyn Any
where Self: Sized,

Upcasts &self as &dyn Any. Read more
Source§

fn as_any_mut(&mut self) -> &mut dyn Any
where Self: Sized,

Upcasts &mut self as &mut dyn Any. Read more
Source§

fn as_any_box(self: Box<Self>) -> Box<dyn Any>
where Self: Sized,

Upcasts Box<self> as Box<dyn Any>. Read more
Source§

fn downcast_ref<T: 'static>(&self) -> Option<&T>

Available on crate feature unsafe_layout only.
Returns some shared reference to the inner value if it is of type T. Read more
Source§

fn downcast_mut<T: 'static>(&mut self) -> Option<&mut T>

Available on crate feature unsafe_layout only.
Returns some exclusive reference to the inner value if it is of type T. Read more
Source§

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

Source§

const NEEDS_DROP: bool = _

Know whether dropping values of this type matters, in compile-time.
Source§

fn mem_align_of<T>() -> usize

Returns the minimum alignment of the type in bytes. Read more
Source§

fn mem_align_of_val(&self) -> usize

Returns the alignment of the pointed-to value in bytes. Read more
Source§

fn mem_size_of<T>() -> usize

Returns the size of a type in bytes. Read more
Source§

fn mem_size_of_val(&self) -> usize

Returns the size of the pointed-to value in bytes. Read more
Source§

fn mem_copy(&self) -> Self
where Self: Copy,

Bitwise-copies a value. Read more
Source§

fn mem_needs_drop(&self) -> bool

Returns true if dropping values of this type matters. Read more
Source§

fn mem_drop(self)
where Self: Sized,

Drops self by running its destructor. Read more
Source§

fn mem_forget(self)
where Self: Sized,

Forgets about self without running its destructor. Read more
Source§

fn mem_replace(&mut self, other: Self) -> Self
where Self: Sized,

Replaces self with other, returning the previous value of self. Read more
Source§

fn mem_take(&mut self) -> Self
where Self: Default,

Replaces self with its default value, returning the previous value of self. Read more
Source§

fn mem_swap(&mut self, other: &mut Self)
where Self: Sized,

Swaps the value of self and other without deinitializing either one. Read more
Source§

unsafe fn mem_zeroed<T>() -> T

Available on crate feature unsafe_layout only.
Returns the value of type T represented by the all-zero byte-pattern. Read more
Source§

unsafe fn mem_transmute_copy<Src, Dst>(src: &Src) -> Dst

Available on crate feature unsafe_layout only.
Returns the value of type T represented by the all-zero byte-pattern. Read more
Source§

fn mem_as_bytes(&self) -> &[u8]
where Self: Sync + Unpin,

Available on crate feature unsafe_slice only.
View a Sync + Unpin self as &[u8]. Read more
Source§

fn mem_as_bytes_mut(&mut self) -> &mut [u8]
where Self: Sync + Unpin,

Available on crate feature unsafe_slice only.
View a Sync + Unpin self as &mut [u8]. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<S> FromSample<S> for S

§

fn from_sample_(s: S) -> S

Source§

impl<T> Hook for T

Source§

fn hook_ref<F>(self, f: F) -> Self
where F: FnOnce(&Self),

Applies a function which takes the parameter by shared reference, and then returns the (possibly) modified owned value. Read more
Source§

fn hook_mut<F>(self, f: F) -> Self
where F: FnOnce(&mut Self),

Applies a function which takes the parameter by exclusive reference, and then returns the (possibly) modified owned value. Read more
§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
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> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
§

impl<F, T> IntoSample<T> for F
where T: FromSample<F>,

§

fn into_sample(self) -> T

§

impl<T> Pointable for T

§

const ALIGN: usize

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

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
§

impl<T, U> ToSample<U> for T
where U: FromSample<T>,

§

fn to_sample_(self) -> U

Source§

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

Source§

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>,

Source§

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

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
§

impl<S, T> Duplex<S> for T
where T: FromSample<S> + ToSample<S>,

§

impl<T> Ungil for T
where T: Send,