Struct coap_client::Client[][src]

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

Generic (async) CoAP client

Implementations

impl Client<Error, 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<E, T> Client<E, T> where
    T: Backend<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 observe(
    &mut self,
    resource: &str,
    opts: &RequestOptions
) -> <T as Backend<E>>::Observe
[src]

Observe the provided resource

pub async fn unobserve(
    &mut self,
    o: <T as Backend<E>>::Observe
) -> Result<(), E>
[src]

Deregister an observation

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

Perform a Get request from the provided resource

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

Perform a Put request to the provided resource

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

Perform a Post request to the provided resource

Trait Implementations

impl<E, B: Backend<E> + Send> Send for Client<E, B>[src]

Mark clients as Send if the backend is

Auto Trait Implementations

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

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

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

impl<E, T> UnwindSafe for Client<E, T> where
    E: UnwindSafe,
    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>,