pub struct DelegateMessage {
pub message: String,
pub c2_profile: Option<String>,
pub uuid: Uuid,
pub mythic_uuid: Option<Uuid>,
}Fields§
§message: String§c2_profile: Option<String>Required in agent-to-Mythic delegate messages; absent in Mythic-to-agent responses.
uuid: Uuid§mythic_uuid: Option<Uuid>Trait Implementations§
Source§impl Clone for DelegateMessage
impl Clone for DelegateMessage
Source§fn clone(&self) -> DelegateMessage
fn clone(&self) -> DelegateMessage
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 moreSource§impl Debug for DelegateMessage
impl Debug for DelegateMessage
Source§impl Default for DelegateMessage
impl Default for DelegateMessage
Source§fn default() -> DelegateMessage
fn default() -> DelegateMessage
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DelegateMessage
impl<'de> Deserialize<'de> for DelegateMessage
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
Source§impl PartialEq for DelegateMessage
impl PartialEq for DelegateMessage
Source§fn eq(&self, other: &DelegateMessage) -> bool
fn eq(&self, other: &DelegateMessage) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for DelegateMessage
impl Serialize for DelegateMessage
impl Eq for DelegateMessage
impl StructuralPartialEq for DelegateMessage
Auto Trait Implementations§
impl Freeze for DelegateMessage
impl RefUnwindSafe for DelegateMessage
impl Send for DelegateMessage
impl Sync for DelegateMessage
impl Unpin for DelegateMessage
impl UnsafeUnpin for DelegateMessage
impl UnwindSafe for DelegateMessage
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