Enum rill_protocol::data::table::TableEvent[][src]

pub enum TableEvent {
    AddCol {
        col: ColId,
        alias: Option<String>,
    },
    DelCol {
        col: ColId,
    },
    AddRow {
        row: RowId,
        alias: Option<String>,
    },
    DelRow {
        row: RowId,
    },
    SetCell {
        row: RowId,
        col: ColId,
        value: String,
    },
}

Variants

AddCol

Fields of AddCol

col: ColIdalias: Option<String>
DelCol

Fields of DelCol

col: ColId
AddRow

Fields of AddRow

row: RowIdalias: Option<String>
DelRow

Fields of DelRow

row: RowId
SetCell

Fields of SetCell

row: RowIdcol: ColIdvalue: String

Trait Implementations

impl Clone for TableEvent[src]

impl Debug for TableEvent[src]

impl<'de> Deserialize<'de> for TableEvent[src]

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

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

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ProtocolData for T where
    T: Serialize + DeserializeOwned + Debug + Send + 'static, 
[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.