Struct screeps_api::websocket::types::messages::MessageUnreadUpdate
[−]
[src]
pub struct MessageUnreadUpdate { pub message_id: String, pub unread: bool, // some fields omitted }
Update on whether a message is unread or not.
Fields
message_id: String
The unique identifier for this message.
unread: bool
Whether or not it is now unread. Most likely false
: going from read to unread is not supported in screeps
as of this writing.
Trait Implementations
impl Clone for MessageUnreadUpdate
[src]
fn clone(&self) -> MessageUnreadUpdate
[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more