[][src]Struct beeswax::client::async_client::AsyncBeeswaxClient

pub struct AsyncBeeswaxClient { /* fields omitted */ }

Provides an interface to the Beeswax Api

Implementations

impl AsyncBeeswaxClient[src]

pub fn builder(base_url: String) -> AsyncBeeswaxClientBuilder[src]

Creates the API builder

pub async fn read<'_, '_, R: Resource, F: Read<R>>(
    &'_ self,
    criteria: &'_ F
) -> Result<Vec<R>, Box<dyn Error>>
[src]

Find resources based on a search criteria

pub async fn create<'_, '_, R: Resource, C: Create<R>>(
    &'_ self,
    create: &'_ C
) -> Result<R, Box<dyn Error>>
[src]

Create a given resource

pub async fn update<'a, '_, R: Resource>(
    &'_ self,
    resource: &'a R
) -> Result<&'a R, Box<dyn Error>>
[src]

Update a given resource

pub async fn delete<'_, '_, R: Resource, D: Delete<R>>(
    &'_ self,
    delete: &'_ D
) -> Result<(), Box<dyn Error>>
[src]

Delete a given resource

Auto Trait Implementations

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> Instrument 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>, 

impl<T> WithSubscriber for T[src]