pub enum RdmResponse {
Response(RdmResponseInfo),
IncompleteResponse(RdmResponseInfo),
RequestWasBroadcast,
}
Variants§
Response(RdmResponseInfo)
The message data of the response.
IncompleteResponse(RdmResponseInfo)
The request has been excepted but the message data is too big to fit into one response. Use the get command on the same pid to receive the rest of it until you just receive a Response.
RequestWasBroadcast
No response was received since the request was a broadcast.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for RdmResponse
impl RefUnwindSafe for RdmResponse
impl Send for RdmResponse
impl Sync for RdmResponse
impl Unpin for RdmResponse
impl UnwindSafe for RdmResponse
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