pub enum SecretsResult {
Complete {
applied_count: u32,
},
Failed {
applied_count: u32,
failed_index: u32,
error: ControlError,
},
}Expand description
Completion of a sequential secret batch.
Variants§
Complete
Every entry completed, including successful no-ops.
Failed
Earlier entries completed; remaining entries were not attempted.
Implementations§
Trait Implementations§
Source§impl Clone for SecretsResult
impl Clone for SecretsResult
Source§fn clone(&self) -> SecretsResult
fn clone(&self) -> SecretsResult
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 moreSource§impl Debug for SecretsResult
impl Debug for SecretsResult
Source§impl<'de> Deserialize<'de> for SecretsResult
impl<'de> Deserialize<'de> for SecretsResult
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
impl Eq for SecretsResult
Source§impl PartialEq for SecretsResult
impl PartialEq for SecretsResult
Source§impl Serialize for SecretsResult
impl Serialize for SecretsResult
impl StructuralPartialEq for SecretsResult
Auto Trait Implementations§
impl Freeze for SecretsResult
impl RefUnwindSafe for SecretsResult
impl Send for SecretsResult
impl Sync for SecretsResult
impl Unpin for SecretsResult
impl UnsafeUnpin for SecretsResult
impl UnwindSafe for SecretsResult
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