pub trait SecretVolumeSourceExt: Sized {
    // Required methods
    fn secret_name(name: impl ToString) -> Self;
    fn optional(self, yes: bool) -> Self;
    fn default_mode(self, mode: i32) -> Self;
    fn items(
        self,
        items: impl IntoIterator<Item = (impl ToString, impl ToString)>,
    ) -> Self;
    // Provided method
    fn required(self) -> Self { ... }
}Expand description
Builders for corev1::SecretVolumeSource objects
Required Methods§
fn secret_name(name: impl ToString) -> Self
fn optional(self, yes: bool) -> Self
fn default_mode(self, mode: i32) -> Self
fn items( self, items: impl IntoIterator<Item = (impl ToString, impl ToString)>, ) -> Self
Provided Methods§
Object Safety§
This trait is not object safe.