pub struct SecretCreateOptions<'a> {
pub driver: Option<&'a str>,
pub driver_opts: Option<&'a str>,
pub labels: Option<&'a str>,
pub name: &'a str,
pub secret: &'a str,
}
Fields§
§driver: Option<&'a str>
§driver_opts: Option<&'a str>
§labels: Option<&'a str>
§name: &'a str
§secret: &'a str
Trait Implementations§
Source§impl<'a> Default for SecretCreateOptions<'a>
impl<'a> Default for SecretCreateOptions<'a>
Source§fn default() -> SecretCreateOptions<'a>
fn default() -> SecretCreateOptions<'a>
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl<'a> Freeze for SecretCreateOptions<'a>
impl<'a> RefUnwindSafe for SecretCreateOptions<'a>
impl<'a> Send for SecretCreateOptions<'a>
impl<'a> Sync for SecretCreateOptions<'a>
impl<'a> Unpin for SecretCreateOptions<'a>
impl<'a> UnwindSafe for SecretCreateOptions<'a>
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