pub struct SecretValidationResult {
pub missing: Vec<&'static str>,
pub present: Vec<&'static str>,
}Expand description
Result produced when validating a set of specs against the runtime core.
Fields§
§missing: Vec<&'static str>Secret names that were missing or empty.
present: Vec<&'static str>Secret names that were present (non-empty).
Auto Trait Implementations§
impl Freeze for SecretValidationResult
impl RefUnwindSafe for SecretValidationResult
impl Send for SecretValidationResult
impl Sync for SecretValidationResult
impl Unpin for SecretValidationResult
impl UnwindSafe for SecretValidationResult
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