[][src]Enum koibumi_core::object::ObjectKind

pub enum ObjectKind {
    Getpubkey,
    Pubkey,
    Msg,
    Broadcast,
    Onionpeer,
}

Known types of Bitmessage objects.

Variants

Getpubkey

getpubkey object type.

Pubkey

pubkey object type.

Msg

msg object type.

Broadcast

broadcast object type.

Onionpeer

onionpeer object type.

Trait Implementations

impl Clone for ObjectKind[src]

impl Copy for ObjectKind[src]

impl Debug for ObjectKind[src]

impl Eq for ObjectKind[src]

impl From<ObjectKind> for ObjectType[src]

impl Hash for ObjectKind[src]

impl PartialEq<ObjectKind> for ObjectKind[src]

impl StructuralEq for ObjectKind[src]

impl StructuralPartialEq for ObjectKind[src]

impl TryFrom<ObjectType> for ObjectKind[src]

type Error = TryFromObjectTypeError

The type returned in the event of a conversion error.

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