[][src]Struct mango_orm::widgets::Transport

pub struct Transport {
    pub id: String,
    pub label: String,
    pub field_type: String,
    pub name: String,
    pub value: String,
    pub maxlength: u32,
    pub required: bool,
    pub checked: bool,
    pub hint: String,
    pub unique: bool,
    pub hidden: bool,
    pub other_attrs: String,
    pub some_classes: String,
    pub select: Vec<(String, String)>,
}

Mediator for transporting widget attributes ----------------------------------------------------

Fields

id: Stringlabel: Stringfield_type: Stringname: Stringvalue: Stringmaxlength: u32required: boolchecked: boolhint: Stringunique: boolhidden: boolother_attrs: Stringsome_classes: Stringselect: Vec<(String, String)>

Trait Implementations

impl Debug for Transport[src]

impl Default for Transport[src]

impl Serialize for Transport[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> 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, 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>,