[][src]Struct koibumi_box_sync::Message

pub struct Message { /* fields omitted */ }

A message structure stored on database.

Implementations

impl Message[src]

pub fn time(&self) -> Time[src]

Returns the received time.

pub fn to_address(&self) -> Option<&Address>[src]

Returns the receiver's Bitmessage address.

pub fn from_address(&self) -> &Address[src]

Returns the sender's Bitmessage address.

pub fn encoding(&self) -> Encoding[src]

Returns the encoding.

pub fn content(&self) -> &[u8][src]

Returns the content bytes.

Trait Implementations

impl Clone for Message[src]

impl Debug for Message[src]

impl Eq for Message[src]

impl From<&'_ Message> for MessageEntry[src]

impl Hash for Message[src]

impl PartialEq<Message> for Message[src]

impl StructuralEq for Message[src]

impl StructuralPartialEq for Message[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> CallHasher for T where
    T: Hash

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.

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