[][src]Struct aiven_rs::cloud::CloudApi

pub struct CloudApi { /* fields omitted */ }

Methods

impl CloudApi[src]

pub async fn list_by_project<'_, '_>(
    &'_ self,
    project: &'_ str
) -> Result<ResClouds, AivenError>
[src]

List available cloud platforms by project name

Examples

Basic usage:

use serde_json::json;

let client = aiven_rs::AivenClient::from_token("https://api.aiven.io", "v1", "aiven-token");

let response = client
        .cloud()
        .list_by_project("my-project").await?;

pub async fn list_all<'_>(&'_ self) -> Result<ResClouds, AivenError>[src]

List all available cloud platforms

Examples

Basic usage:

use serde_json::json;

let client = aiven_rs::AivenClient::from_token("https://api.aiven.io", "v1", "aiven-token");

let response = client
        .cloud()
        .list_all().await?;

Auto Trait Implementations

impl !RefUnwindSafe for CloudApi

impl Send for CloudApi

impl Sync for CloudApi

impl Unpin for CloudApi

impl !UnwindSafe for CloudApi

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,