pub enum OperationCategory {
Read,
Create,
Update,
Delete,
Admin,
Internal,
}Expand description
Operation category for filtering.
Variants§
Read
Read operations (GET, Query, SELECT)
Create
Create operations (POST create, Mutation create, INSERT)
Update
Update operations (PUT/PATCH, Mutation update, UPDATE)
Delete
Delete operations (DELETE, Mutation delete, DELETE)
Admin
Administrative operations
Internal
Internal/debug operations
Implementations§
Trait Implementations§
Source§impl Clone for OperationCategory
impl Clone for OperationCategory
Source§fn clone(&self) -> OperationCategory
fn clone(&self) -> OperationCategory
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for OperationCategory
impl Debug for OperationCategory
Source§impl<'de> Deserialize<'de> for OperationCategory
impl<'de> Deserialize<'de> for OperationCategory
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Hash for OperationCategory
impl Hash for OperationCategory
Source§impl PartialEq for OperationCategory
impl PartialEq for OperationCategory
Source§impl Serialize for OperationCategory
impl Serialize for OperationCategory
impl Copy for OperationCategory
impl Eq for OperationCategory
impl StructuralPartialEq for OperationCategory
Auto Trait Implementations§
impl Freeze for OperationCategory
impl RefUnwindSafe for OperationCategory
impl Send for OperationCategory
impl Sync for OperationCategory
impl Unpin for OperationCategory
impl UnsafeUnpin for OperationCategory
impl UnwindSafe for OperationCategory
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.