[][src]Trait operator_framework::install::config::AppendString

pub trait AppendString<T> {
    fn insert_string<S, P>(&mut self, key: S, keep_existing: bool, provider: P)
    where
        S: ToString,
        P: FnOnce() -> T
; fn append_string<S>(&mut self, key: S, value: T)
    where
        S: ToString
, { ... }
fn init_string_from<S, P>(&mut self, key: S, provider: P)
    where
        S: ToString,
        P: FnOnce() -> T
, { ... }
fn init_string<S>(&mut self, key: S, value: T)
    where
        S: ToString
, { ... } }

Required methods

fn insert_string<S, P>(&mut self, key: S, keep_existing: bool, provider: P) where
    S: ToString,
    P: FnOnce() -> T, 

Loading content...

Provided methods

fn append_string<S>(&mut self, key: S, value: T) where
    S: ToString

fn init_string_from<S, P>(&mut self, key: S, provider: P) where
    S: ToString,
    P: FnOnce() -> T, 

fn init_string<S>(&mut self, key: S, value: T) where
    S: ToString

Loading content...

Implementations on Foreign Types

impl<T: Into<Vec<u8>>> AppendString<T> for Secret[src]

impl<T: Into<String>> AppendString<T> for ConfigMap[src]

Loading content...

Implementors

Loading content...