pub enum ReceiverAction {
Request(MissionRequestInt),
Ack(MissionAck),
}Expand description
The next thing a MissionReceiver should send.
Variants§
Request(MissionRequestInt)
Ask for this sequence number.
Ack(MissionAck)
The transfer is complete; send this acknowledgement.
Trait Implementations§
Source§impl Clone for ReceiverAction
impl Clone for ReceiverAction
Source§fn clone(&self) -> ReceiverAction
fn clone(&self) -> ReceiverAction
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for ReceiverAction
Source§impl Debug for ReceiverAction
impl Debug for ReceiverAction
Source§impl PartialEq for ReceiverAction
impl PartialEq for ReceiverAction
Source§fn eq(&self, other: &ReceiverAction) -> bool
fn eq(&self, other: &ReceiverAction) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ReceiverAction
Auto Trait Implementations§
impl Freeze for ReceiverAction
impl RefUnwindSafe for ReceiverAction
impl Send for ReceiverAction
impl Sync for ReceiverAction
impl Unpin for ReceiverAction
impl UnsafeUnpin for ReceiverAction
impl UnwindSafe for ReceiverAction
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