pub enum AuthorizationPolicyAppendOutcome {
Appended {
version: AuthorizationPolicyVersion,
},
Conflict {
expected: AuthorizationPolicyVersion,
actual: AuthorizationPolicyVersion,
},
}Variants§
Trait Implementations§
Source§impl Clone for AuthorizationPolicyAppendOutcome
impl Clone for AuthorizationPolicyAppendOutcome
Source§fn clone(&self) -> AuthorizationPolicyAppendOutcome
fn clone(&self) -> AuthorizationPolicyAppendOutcome
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 AuthorizationPolicyAppendOutcome
impl Eq for AuthorizationPolicyAppendOutcome
impl StructuralPartialEq for AuthorizationPolicyAppendOutcome
Auto Trait Implementations§
impl Freeze for AuthorizationPolicyAppendOutcome
impl RefUnwindSafe for AuthorizationPolicyAppendOutcome
impl Send for AuthorizationPolicyAppendOutcome
impl Sync for AuthorizationPolicyAppendOutcome
impl Unpin for AuthorizationPolicyAppendOutcome
impl UnsafeUnpin for AuthorizationPolicyAppendOutcome
impl UnwindSafe for AuthorizationPolicyAppendOutcome
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