Trait near_syn::NearStruct[][src]

pub trait NearStruct {
    fn is_serialize(&self) -> bool;
fn is_deserialize(&self) -> bool;
fn is_serde(&self) -> bool; }

Defines helper methods to deal with Near structs.

Required methods

fn is_serialize(&self) -> bool[src]

Returns whether the given self method derives serde::Serialize.

fn is_deserialize(&self) -> bool[src]

Returns whether the given self method derives serde::Deserialize.

fn is_serde(&self) -> bool[src]

Returns whether the given self method derives either serde::Serialize or serde::Deserialize.

Loading content...

Implementations on Foreign Types

impl NearStruct for ItemStruct[src]

Loading content...

Implementors

Loading content...