[][src]Trait k8s_gcr_auth_helper::common::KubeCrud

pub trait KubeCrud {
#[must_use]    fn upsert<'life0, 'life1, 'life2, 'life3, 'async_trait>(
        &'life0 self,
        client: &'life1 APIClient,
        namespace: &'life2 str,
        name: &'life3 str
    ) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        'life1: 'async_trait,
        'life2: 'async_trait,
        'life3: 'async_trait,
        Self: 'async_trait
;
#[must_use] fn delete<'life0, 'life1, 'life2, 'async_trait>(
        client: &'life0 APIClient,
        namespace: &'life1 str,
        name: &'life2 str
    ) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>>
    where
        'life0: 'async_trait,
        'life1: 'async_trait,
        'life2: 'async_trait
; }

Required methods

#[must_use]fn upsert<'life0, 'life1, 'life2, 'life3, 'async_trait>(
    &'life0 self,
    client: &'life1 APIClient,
    namespace: &'life2 str,
    name: &'life3 str
) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    'life1: 'async_trait,
    'life2: 'async_trait,
    'life3: 'async_trait,
    Self: 'async_trait, 

#[must_use]fn delete<'life0, 'life1, 'life2, 'async_trait>(
    client: &'life0 APIClient,
    namespace: &'life1 str,
    name: &'life2 str
) -> Pin<Box<dyn Future<Output = Result<()>> + Send + 'async_trait>> where
    'life0: 'async_trait,
    'life1: 'async_trait,
    'life2: 'async_trait, 

Loading content...

Implementations on Foreign Types

impl KubeCrud for Secret[src]

impl KubeCrud for ServiceAccount[src]

impl KubeCrud for Deployment[src]

impl KubeCrud for ClusterRoleBinding[src]

impl KubeCrud for ClusterRole[src]

Loading content...

Implementors

Loading content...