#[repr(u8)]pub enum ResponseType {
ResponseTypeAck = 0,
ResponseTypeAckTimer = 1,
ResponseTypeNackReason = 2,
ResponseTypeAckOverflow = 3,
}
Expand description
Response status of a rdm package
Variants§
ResponseTypeAck = 0
The request was acknowledged.
ResponseTypeAckTimer = 1
The request was acknowledged but the result isn’t ready yet.
ResponseTypeNackReason = 2
The request was not acknowledged.
ResponseTypeAckOverflow = 3
The request was acknowledged but the response does not fit into a single responds.
Trait Implementations§
Source§impl Clone for ResponseType
impl Clone for ResponseType
Source§fn clone(&self) -> ResponseType
fn clone(&self) -> ResponseType
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for ResponseType
impl Debug for ResponseType
Source§impl Format for ResponseType
impl Format for ResponseType
Source§impl PartialEq for ResponseType
impl PartialEq for ResponseType
Source§impl TryFrom<u8> for ResponseType
impl TryFrom<u8> for ResponseType
impl Copy for ResponseType
impl Eq for ResponseType
impl StructuralPartialEq for ResponseType
Auto Trait Implementations§
impl Freeze for ResponseType
impl RefUnwindSafe for ResponseType
impl Send for ResponseType
impl Sync for ResponseType
impl Unpin for ResponseType
impl UnwindSafe for ResponseType
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more