[][src]Struct koibumi_core::message::StreamNumber

pub struct StreamNumber(_);

A stream number, which is the identification number of the Bitmessage network cluster.

Implementations

impl StreamNumber[src]

pub fn new(value: u32) -> Self[src]

Constructs a stream number from a value.

pub fn as_u32(self) -> u32[src]

Returns the value as u32.

Trait Implementations

impl Clone for StreamNumber[src]

impl Copy for StreamNumber[src]

impl Debug for StreamNumber[src]

impl Display for StreamNumber[src]

impl Eq for StreamNumber[src]

impl From<StreamNumber> for VarInt[src]

impl From<u32> for StreamNumber[src]

impl Hash for StreamNumber[src]

impl LenBm for StreamNumber[src]

impl Ord for StreamNumber[src]

impl PartialEq<StreamNumber> for StreamNumber[src]

impl PartialOrd<StreamNumber> for StreamNumber[src]

impl ReadFrom for StreamNumber[src]

impl StructuralEq for StreamNumber[src]

impl StructuralPartialEq for StreamNumber[src]

impl TryFrom<VarInt> for StreamNumber[src]

type Error = ConvertStreamNumberError

The type returned in the event of a conversion error.

impl WriteTo for StreamNumber[src]

Auto Trait Implementations

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> ReadFromExact for T where
    T: ReadFrom
[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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,