pub enum MessageToDrone {
Action(BackendActionMessage),
AckEvent {
event_id: BackendEventId,
},
RenewKeyResponse(RenewKeyResponse),
}
Variants§
Action(BackendActionMessage)
AckEvent
Acknowledge that the container has received and processed a backend event.
Fields
§
event_id: BackendEventId
RenewKeyResponse(RenewKeyResponse)
Trait Implementations§
Source§impl ChannelMessage for MessageToDrone
impl ChannelMessage for MessageToDrone
type Reply = MessageFromDrone
Source§impl Clone for MessageToDrone
impl Clone for MessageToDrone
Source§fn clone(&self) -> MessageToDrone
fn clone(&self) -> MessageToDrone
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 MessageToDrone
impl Debug for MessageToDrone
Source§impl<'de> Deserialize<'de> for MessageToDrone
impl<'de> Deserialize<'de> for MessageToDrone
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for MessageToDrone
impl RefUnwindSafe for MessageToDrone
impl Send for MessageToDrone
impl Sync for MessageToDrone
impl Unpin for MessageToDrone
impl UnwindSafe for MessageToDrone
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