[][src]Enum transistor::types::http::Action

pub enum Action {
    Put(StringOption<DateTime<FixedOffset>>),
    Delete(StringOption<DateTime<FixedOffset>>),
    Evict(String),
    Match(StringStringOption<DateTime<FixedOffset>>),
}

Action to perform in Crux. Receives a serialized Edn.

First field of your struct should be crux__db___id: CruxId

Allowed actions:

  • PUT - Write a version of a document can receive an Option<DateTime<FixedOffset>> as second argument which corresponds to a valid-time.
  • Delete - Deletes the specific document at a given valid time, if Option<DateTime<FixedOffset>> is None it deletes the last valid-timeelse it deletes the passedvalid-time`.
  • Evict - Evicts a document entirely, including all historical versions (receives only the ID to evict).
  • Match - Matches the current state of an entity, if the state doesn't match the provided document, the transaction will not continue. First argument is struct's crux__db___id, the second is the serialized document that you want to match and the third argument is an Option<DateTime<FixedOffset>> which corresponds to a valid-time for the Match

Variants

Evict(String)

Trait Implementations

impl Debug for Action[src]

impl PartialEq<Action> for Action[src]

impl Serialize for Action[src]

impl StructuralPartialEq for Action[src]

Auto Trait Implementations

impl RefUnwindSafe for Action

impl Send for Action

impl Sync for Action

impl Unpin for Action

impl UnwindSafe for Action

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