[][src]Struct corda_rpc::Field

pub struct Field<'a> {
    pub name: &'a str,
    pub ty: &'a str,
    pub requires: List<&'a str>,
    pub default: Option<&'a str>,
    pub label: Option<&'a str>,
    pub mandatory: bool,
    pub multiple: bool,
}

Fields

name: &'a strty: &'a strrequires: List<&'a str>default: Option<&'a str>label: Option<&'a str>mandatory: boolmultiple: bool

Trait Implementations

impl<'a> Debug for Field<'a>[src]

impl<'a> Described for Field<'a>[src]

impl<'de: 'a, 'a> Deserialize<'de> for Field<'a>[src]

impl<'a> Serialize for Field<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for Field<'a>

impl<'a> Send for Field<'a>

impl<'a> Sync for Field<'a>

impl<'a> Unpin for Field<'a>

impl<'a> UnwindSafe for Field<'a>

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> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[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.