pub struct ContainerWithMountedSecretOpts<'a> {
pub owner: Option<&'a str>,
}Fields§
§owner: Option<&'a str>A user:group to set for the mounted secret. The user and group can either be an ID (1000:1000) or a name (foo:bar). If the group is omitted, it defaults to the same as the user.
Trait Implementations§
source§impl<'a> Debug for ContainerWithMountedSecretOpts<'a>
impl<'a> Debug for ContainerWithMountedSecretOpts<'a>
source§impl<'a> PartialEq<ContainerWithMountedSecretOpts<'a>> for ContainerWithMountedSecretOpts<'a>
impl<'a> PartialEq<ContainerWithMountedSecretOpts<'a>> for ContainerWithMountedSecretOpts<'a>
source§fn eq(&self, other: &ContainerWithMountedSecretOpts<'a>) -> bool
fn eq(&self, other: &ContainerWithMountedSecretOpts<'a>) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl<'a> StructuralPartialEq for ContainerWithMountedSecretOpts<'a>
Auto Trait Implementations§
impl<'a> RefUnwindSafe for ContainerWithMountedSecretOpts<'a>
impl<'a> Send for ContainerWithMountedSecretOpts<'a>
impl<'a> Sync for ContainerWithMountedSecretOpts<'a>
impl<'a> Unpin for ContainerWithMountedSecretOpts<'a>
impl<'a> UnwindSafe for ContainerWithMountedSecretOpts<'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