Struct coap_client::Client[][src]

pub struct Client<T: Backend> { /* fields omitted */ }

Generic (async) CoAP client

Implementations

impl Client<Tokio>[src]

pub async fn connect<H>(host: H, opts: &ClientOptions) -> Result<Self, Error> where
    H: TryInto<HostOptions>,
    <H as TryInto<HostOptions>>::Error: Debug
[src]

Create a new client with the provided host and client options

pub async fn close(self) -> Result<(), Error>[src]

Close the provided client, ending all existing sessions

impl<T, E> Client<T> where
    T: Backend<Error = E>,
    E: Debug
[src]

pub async fn request(
    &mut self,
    method: Method,
    resource: &str,
    data: Option<&[u8]>,
    opts: &RequestOptions
) -> Result<Packet, Error<E>>
[src]

Perform a basic CoAP request

pub async fn get(
    &mut self,
    resource: &str,
    opts: &RequestOptions
) -> Result<Vec<u8>, Error<E>>
[src]

pub async fn put(
    &mut self,
    resource: &str,
    data: Option<&[u8]>,
    opts: &RequestOptions
) -> Result<Vec<u8>, Error<E>>
[src]

pub async fn post(
    &mut self,
    resource: &str,
    data: Option<&[u8]>,
    opts: &RequestOptions
) -> Result<Vec<u8>, Error<E>>
[src]

Auto Trait Implementations

impl<T> RefUnwindSafe for Client<T> where
    T: RefUnwindSafe
[src]

impl<T> Send for Client<T> where
    T: Send
[src]

impl<T> Sync for Client<T> where
    T: Sync
[src]

impl<T> Unpin for Client<T> where
    T: Unpin
[src]

impl<T> UnwindSafe for Client<T> where
    T: UnwindSafe
[src]

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