Struct coap_client::Client [−][src]
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]
H: TryInto<HostOptions>,
<H as TryInto<HostOptions>>::Error: Debug,
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]
T: Backend<E>,
E: Debug,
pub async fn request(
&mut self,
method: Method,
resource: &str,
data: Option<&[u8]>,
opts: &RequestOptions
) -> Result<Packet, Error<E>>[src]
&mut self,
method: Method,
resource: &str,
data: Option<&[u8]>,
opts: &RequestOptions
) -> Result<Packet, Error<E>>
Perform a basic CoAP request
pub async fn observe(
&mut self,
resource: &str,
opts: &RequestOptions
) -> <T as Backend<E>>::Observe[src]
&mut self,
resource: &str,
opts: &RequestOptions
) -> <T as Backend<E>>::Observe
Observe the provided resource
pub async fn unobserve(
&mut self,
o: <T as Backend<E>>::Observe
) -> Result<(), E>[src]
&mut self,
o: <T as Backend<E>>::Observe
) -> Result<(), E>
Deregister an observation
pub async fn get(
&mut self,
resource: &str,
opts: &RequestOptions
) -> Result<Vec<u8>, Error<E>>[src]
&mut self,
resource: &str,
opts: &RequestOptions
) -> Result<Vec<u8>, Error<E>>
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]
&mut self,
resource: &str,
data: Option<&[u8]>,
opts: &RequestOptions
) -> Result<Vec<u8>, Error<E>>
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]
&mut self,
resource: &str,
data: Option<&[u8]>,
opts: &RequestOptions
) -> Result<Vec<u8>, Error<E>>
Perform a Post request to the provided resource
Trait Implementations
Auto Trait Implementations
impl<E, T> RefUnwindSafe for Client<E, T> where
E: RefUnwindSafe,
T: RefUnwindSafe, [src]
E: RefUnwindSafe,
T: RefUnwindSafe,
impl<E, T> Sync for Client<E, T> where
E: Sync,
T: Sync, [src]
E: Sync,
T: Sync,
impl<E, T> Unpin for Client<E, T> where
E: Unpin,
T: Unpin, [src]
E: Unpin,
T: Unpin,
impl<E, T> UnwindSafe for Client<E, T> where
E: UnwindSafe,
T: UnwindSafe, [src]
E: UnwindSafe,
T: UnwindSafe,
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,
pub 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, 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.
pub 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>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
V: MultiLane<T>,