pub enum Idempotency {
None,
Inherent,
}Expand description
A capability’s declared idempotency property.
Variants§
None
No idempotency property is declared.
Inherent
Repeating the operation has the same effect as performing it once.
Trait Implementations§
Source§impl Clone for Idempotency
impl Clone for Idempotency
Source§fn clone(&self) -> Idempotency
fn clone(&self) -> Idempotency
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for Idempotency
Source§impl Debug for Idempotency
impl Debug for Idempotency
impl Eq for Idempotency
Source§impl Hash for Idempotency
impl Hash for Idempotency
Source§impl PartialEq for Idempotency
impl PartialEq for Idempotency
impl StructuralPartialEq for Idempotency
Auto Trait Implementations§
impl Freeze for Idempotency
impl RefUnwindSafe for Idempotency
impl Send for Idempotency
impl Sync for Idempotency
impl Unpin for Idempotency
impl UnsafeUnpin for Idempotency
impl UnwindSafe for Idempotency
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