[−][src]Struct kube::client::APIClient
APIClient requires config::Configuration includes client to connect with kubernetes cluster.
Methods
impl APIClient[src]
pub fn new(configuration: Configuration) -> Self[src]
pub async fn request<'_, T>(&'_ self, request: Request<Vec<u8>>) -> Result<T> where
T: DeserializeOwned, [src]
T: DeserializeOwned,
pub async fn request_text<'_>(
&'_ self,
request: Request<Vec<u8>>
) -> Result<String>[src]
&'_ self,
request: Request<Vec<u8>>
) -> Result<String>
pub async fn request_text_stream<'_>(
&'_ self,
request: Request<Vec<u8>>
) -> Result<impl Stream<Item = Result<Bytes>>>[src]
&'_ self,
request: Request<Vec<u8>>
) -> Result<impl Stream<Item = Result<Bytes>>>
pub async fn request_status<'_, T>(
&'_ self,
request: Request<Vec<u8>>
) -> Result<Either<T, Status>> where
T: DeserializeOwned, [src]
&'_ self,
request: Request<Vec<u8>>
) -> Result<Either<T, Status>> where
T: DeserializeOwned,
pub async fn request_events<'_, T>(
&'_ self,
request: Request<Vec<u8>>
) -> Result<impl TryStream<Item = Result<T>>> where
T: DeserializeOwned, [src]
&'_ self,
request: Request<Vec<u8>>
) -> Result<impl TryStream<Item = Result<T>>> where
T: DeserializeOwned,
Trait Implementations
Auto Trait Implementations
impl !RefUnwindSafe for APIClient
impl Send for APIClient
impl Sync for APIClient
impl Unpin for APIClient
impl !UnwindSafe for APIClient
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,