pub enum Flql {
Show 18 variants
New(String),
Drop(String),
Exists(String),
Length(String),
Upsert(String, String),
UpsertWhen(String, String, String),
UpsertPointer(String, String, String),
Get(String),
GetWhen(String, String),
GetPointer(String, String),
GetView(String, String),
GetClip(String, String),
Delete(String),
DeleteWhen(String, String),
DeletePointer(String, String),
DeleteView(String, String),
DeleteClip(String, String),
None,
}Variants§
New(String)
Drop(String)
Exists(String)
Length(String)
Upsert(String, String)
UpsertWhen(String, String, String)
UpsertPointer(String, String, String)
Get(String)
GetWhen(String, String)
GetPointer(String, String)
GetView(String, String)
GetClip(String, String)
Delete(String)
DeleteWhen(String, String)
DeletePointer(String, String)
DeleteView(String, String)
DeleteClip(String, String)
None
Trait Implementations§
source§impl PartialEq<Flql> for Flql
impl PartialEq<Flql> for Flql
impl StructuralPartialEq for Flql
Auto Trait Implementations§
impl RefUnwindSafe for Flql
impl Send for Flql
impl Sync for Flql
impl Unpin for Flql
impl UnwindSafe for Flql
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more