pub struct EventAllOfMessage {
pub sender: Option<String>,
pub subject: Option<String>,
pub message: Option<String>,
pub sender_icon: Option<String>,
pub attachments: Option<Vec<String>>,
}Fields§
§sender: Option<String>Who commissioned this reward
subject: Option<String>Title of the in-game mail received for completing the step.
message: Option<String>Body of the in-game mail received for completing the step.
sender_icon: Option<String>Path to sender icon string.
attachments: Option<Vec<String>>Attachments to the message. Unknown usage.
Implementations§
Source§impl EventAllOfMessage
impl EventAllOfMessage
pub fn new() -> EventAllOfMessage
Trait Implementations§
Source§impl Clone for EventAllOfMessage
impl Clone for EventAllOfMessage
Source§fn clone(&self) -> EventAllOfMessage
fn clone(&self) -> EventAllOfMessage
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 EventAllOfMessage
impl Debug for EventAllOfMessage
Source§impl Default for EventAllOfMessage
impl Default for EventAllOfMessage
Source§fn default() -> EventAllOfMessage
fn default() -> EventAllOfMessage
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for EventAllOfMessage
impl<'de> Deserialize<'de> for EventAllOfMessage
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 EventAllOfMessage
impl PartialEq for EventAllOfMessage
Source§impl Serialize for EventAllOfMessage
impl Serialize for EventAllOfMessage
impl StructuralPartialEq for EventAllOfMessage
Auto Trait Implementations§
impl Freeze for EventAllOfMessage
impl RefUnwindSafe for EventAllOfMessage
impl Send for EventAllOfMessage
impl Sync for EventAllOfMessage
impl Unpin for EventAllOfMessage
impl UnwindSafe for EventAllOfMessage
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