Enum wql::Wql[][src]

pub enum Wql {
    CreateEntity(StringVec<String>, Vec<String>),
    Insert(StringEntityOption<Uuid>),
    UpdateContent(StringEntityUuid),
    UpdateSet(StringEntityUuid),
    Delete(StringString),
    MatchUpdate(StringEntityUuidMatchCondition),
    Evict(StringOption<Uuid>),
    Select(StringToSelectOption<Uuid>, HashMap<String, Algebra>),
    SelectWhen(StringToSelectOption<Uuid>, String),
    SelectWhenRange(StringUuidStringString),
    SelectIds(StringToSelectVec<Uuid>, HashMap<String, Algebra>),
    SelectWhere(StringToSelectVec<Clause>, HashMap<String, Algebra>),
    CheckValue(StringUuidHashMap<String, String>),
}

Variants

CreateEntity(StringVec<String>, Vec<String>)
Insert(StringEntityOption<Uuid>)
UpdateContent(StringEntityUuid)
UpdateSet(StringEntityUuid)
Delete(StringString)
MatchUpdate(StringEntityUuidMatchCondition)
Evict(StringOption<Uuid>)
SelectWhen(StringToSelectOption<Uuid>, String)
SelectWhenRange(StringUuidStringString)
CheckValue(StringUuidHashMap<String, String>)

Trait Implementations

impl Debug for Wql[src]

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

impl FromStr for Wql[src]

type Err = String

The associated error which can be returned from parsing.

impl PartialEq<Wql> for Wql[src]

impl Serialize for Wql[src]

impl StructuralPartialEq for Wql[src]

Auto Trait Implementations

impl RefUnwindSafe for Wql

impl Send for Wql

impl Sync for Wql

impl Unpin for Wql

impl UnwindSafe for Wql

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