[−][src]Struct tinkerforge::converting_callback_receiver::ConvertingCallbackReceiver
A wrapper for Receiver, which converts received byte vectors to structured data. This variant of
ConvertingReceiver is used for events.
This receiver wraps a Receiver receiving raw bytes. Calling recv_forever, recv_timeout or try_recv
will call equivalent methods on the wrapped Receiver and then convert the received bytes
to a instance of T.
Type parameters
T- Type which is created from received byte vectors. Must implementFromByteSlice
Errors
Returned errors are equivalent to those returned from methods of a Receiver.
If the received response can not be interpreted as the result type T, a MalformedPacket
error is raised.
Methods
impl<T: FromByteSlice> ConvertingCallbackReceiver<T>[src]
pub fn new(receiver: Receiver<Vec<u8>>) -> ConvertingCallbackReceiver<T>[src]
Creates a new converting callback receiver which wraps the given Receiver.
pub fn try_recv(&self) -> Result<T, CallbackTryRecvError>[src]
Attempts to return a pending value on this receiver without blocking. This method behaves like try_recv.
Errors
Returns an error if the queue was disconnected or currently empty, or if the received packet was malformed.
pub fn recv_forever(&self) -> Result<T, CallbackRecvError>[src]
Attempts to wait for a value on this receiver, returning an error if the corresponding channel has hung up. This method behaves like recv.
Errors
Returns an error if the queue was disconnected or currently empty, or if the received packet was malformed.
pub fn recv_timeout(
&self,
timeout: Duration
) -> Result<T, CallbackRecvTimeoutError>[src]
&self,
timeout: Duration
) -> Result<T, CallbackRecvTimeoutError>
Attempts to wait for a value on this receiver, returning an error if the corresponding channel has hung up, or if it waits more than timeout.
This method behaves like recv_timeout.
Errors
Returns an error on one of the following conditions:
- The queue was disconnected.
- The received packet was malformed.
- Blocked longer than the configured time out.
ⓘImportant traits for Iter<'a, T>pub fn iter(&self) -> Iter<T>[src]
ⓘImportant traits for TryIter<'a, T>pub fn try_iter(&self) -> TryIter<T>[src]
Trait Implementations
impl<'a, T: FromByteSlice> IntoIterator for &'a ConvertingCallbackReceiver<T>[src]
type Item = T
The type of the elements being iterated over.
type IntoIter = Iter<'a, T>
Which kind of iterator are we turning this into?
ⓘImportant traits for Iter<'a, T>fn into_iter(self) -> Iter<'a, T>[src]
impl<T: FromByteSlice> IntoIterator for ConvertingCallbackReceiver<T>[src]
Auto Trait Implementations
impl<T> Send for ConvertingCallbackReceiver<T> where
T: Send,
T: Send,
impl<T> !Sync for ConvertingCallbackReceiver<T>
impl<T> Unpin for ConvertingCallbackReceiver<T> where
T: Unpin,
T: Unpin,
impl<T> !UnwindSafe for ConvertingCallbackReceiver<T>
impl<T> !RefUnwindSafe for ConvertingCallbackReceiver<T>
Blanket Implementations
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<I> IntoIterator for I where
I: Iterator, [src]
I: Iterator,
type Item = <I as Iterator>::Item
The type of the elements being iterated over.
type IntoIter = I
Which kind of iterator are we turning this into?
fn into_iter(self) -> I[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = !
The type returned in the event of a conversion error.
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.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Same<T> for T
type Output = T
Should always be Self