#[non_exhaustive]pub enum ExposeSecretError<MEC: ChooseMinimallyRepresentableUInt> {
ExposeMoreThanMaximallyAllow(ExposeMoreThanMaximallyAllowError<MEC>),
}Expand description
An error representing that the secret has been exposed more times than allowed.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
ExposeMoreThanMaximallyAllow(ExposeMoreThanMaximallyAllowError<MEC>)
Trait Implementations§
Source§impl<MEC: Debug + ChooseMinimallyRepresentableUInt> Debug for ExposeSecretError<MEC>
impl<MEC: Debug + ChooseMinimallyRepresentableUInt> Debug for ExposeSecretError<MEC>
Auto Trait Implementations§
impl<MEC> Freeze for ExposeSecretError<MEC>
impl<MEC> RefUnwindSafe for ExposeSecretError<MEC>
impl<MEC> Send for ExposeSecretError<MEC>
impl<MEC> Sync for ExposeSecretError<MEC>
impl<MEC> Unpin for ExposeSecretError<MEC>
impl<MEC> UnwindSafe for ExposeSecretError<MEC>
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