[][src]Struct eosio_forum::Post

pub struct Post {
    pub poster: AccountName,
    pub post_uuid: String,
    pub content: String,
    pub reply_to_poster: AccountName,
    pub reply_to_poster_uuid: String,
    pub certify: bool,
    pub json_metadata: String,
}

Fields

poster: AccountNamepost_uuid: Stringcontent: Stringreply_to_poster: AccountNamereply_to_poster_uuid: Stringcertify: booljson_metadata: String

Trait Implementations

impl ActionFn for Post[src]

impl Clone for Post[src]

impl NumBytes for Post[src]

impl Read for Post[src]

impl Write for Post[src]

Auto Trait Implementations

impl RefUnwindSafe for Post

impl Send for Post

impl Sync for Post

impl Unpin for Post

impl UnwindSafe for Post

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