#[repr(i32)]
pub enum IdempotencyLevel {
IdempotencyUnknown,
NoSideEffects,
Idempotent,
}
Expand description
Is this method side-effect-free (or safe in HTTP parlance), or idempotent, or neither? HTTP based RPC implementation may choose GET verb for safe methods, and PUT verb for idempotent methods instead of the default POST.
Variants
IdempotencyUnknown
NoSideEffects
implies idempotent
Idempotent
idempotent, but may have side effects
Implementations
Trait Implementations
sourceimpl Clone for IdempotencyLevel
impl Clone for IdempotencyLevel
sourcefn clone(&self) -> IdempotencyLevel
fn clone(&self) -> IdempotencyLevel
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for IdempotencyLevel
impl Debug for IdempotencyLevel
sourceimpl Default for IdempotencyLevel
impl Default for IdempotencyLevel
sourcefn default() -> IdempotencyLevel
fn default() -> IdempotencyLevel
Returns the “default value” for a type. Read more
sourceimpl From<IdempotencyLevel> for i32
impl From<IdempotencyLevel> for i32
sourcefn from(value: IdempotencyLevel) -> i32
fn from(value: IdempotencyLevel) -> i32
Converts to this type from the input type.
sourceimpl Hash for IdempotencyLevel
impl Hash for IdempotencyLevel
sourceimpl Ord for IdempotencyLevel
impl Ord for IdempotencyLevel
sourceimpl PartialEq<IdempotencyLevel> for IdempotencyLevel
impl PartialEq<IdempotencyLevel> for IdempotencyLevel
sourceimpl PartialOrd<IdempotencyLevel> for IdempotencyLevel
impl PartialOrd<IdempotencyLevel> for IdempotencyLevel
sourcefn partial_cmp(&self, other: &IdempotencyLevel) -> Option<Ordering>
fn partial_cmp(&self, other: &IdempotencyLevel) -> Option<Ordering>
This method returns an ordering between self
and other
values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self
and other
) and is used by the <
operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self
and other
) and is used by the <=
operator. Read more
impl Copy for IdempotencyLevel
impl Eq for IdempotencyLevel
impl StructuralEq for IdempotencyLevel
impl StructuralPartialEq for IdempotencyLevel
Auto Trait Implementations
impl RefUnwindSafe for IdempotencyLevel
impl Send for IdempotencyLevel
impl Sync for IdempotencyLevel
impl Unpin for IdempotencyLevel
impl UnwindSafe for IdempotencyLevel
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more