pub struct MessageStateUpdate {
pub message_id: MessageId,
pub status: HashMap<EndpointAddr, MessageStatusKind>,
}Fields§
§message_id: MessageId§status: HashMap<EndpointAddr, MessageStatusKind>Implementations§
Source§impl MessageStateUpdate
impl MessageStateUpdate
pub fn new( message_id: MessageId, status: HashMap<EndpointAddr, MessageStatusKind>, ) -> MessageStateUpdate
pub fn new_empty(message_id: MessageId) -> MessageStateUpdate
Trait Implementations§
Source§impl<'__de, __Context> BorrowDecode<'__de, __Context> for MessageStateUpdate
impl<'__de, __Context> BorrowDecode<'__de, __Context> for MessageStateUpdate
Source§fn borrow_decode<__D>(
decoder: &mut __D,
) -> Result<MessageStateUpdate, DecodeError>where
__D: BorrowDecoder<'__de, Context = __Context>,
fn borrow_decode<__D>(
decoder: &mut __D,
) -> Result<MessageStateUpdate, DecodeError>where
__D: BorrowDecoder<'__de, Context = __Context>,
Attempt to decode this type with the given BorrowDecode.
Source§impl Clone for MessageStateUpdate
impl Clone for MessageStateUpdate
Source§fn clone(&self) -> MessageStateUpdate
fn clone(&self) -> MessageStateUpdate
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 MessageStateUpdate
impl Debug for MessageStateUpdate
Source§impl<__Context> Decode<__Context> for MessageStateUpdate
impl<__Context> Decode<__Context> for MessageStateUpdate
Source§fn decode<__D>(decoder: &mut __D) -> Result<MessageStateUpdate, DecodeError>where
__D: Decoder<Context = __Context>,
fn decode<__D>(decoder: &mut __D) -> Result<MessageStateUpdate, DecodeError>where
__D: Decoder<Context = __Context>,
Attempt to decode this type with the given Decode.
Source§impl<'de> Deserialize<'de> for MessageStateUpdate
impl<'de> Deserialize<'de> for MessageStateUpdate
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<MessageStateUpdate, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<MessageStateUpdate, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Encode for MessageStateUpdate
impl Encode for MessageStateUpdate
Source§impl Serialize for MessageStateUpdate
impl Serialize for MessageStateUpdate
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Auto Trait Implementations§
impl Freeze for MessageStateUpdate
impl RefUnwindSafe for MessageStateUpdate
impl Send for MessageStateUpdate
impl Sync for MessageStateUpdate
impl Unpin for MessageStateUpdate
impl UnsafeUnpin for MessageStateUpdate
impl UnwindSafe for MessageStateUpdate
Blanket Implementations§
impl<T> AppData for Twhere
T: OptionalSend + OptionalSync + 'static + OptionalSerde,
impl<T> AppDataResponse for Twhere
T: OptionalSend + OptionalSync + 'static + OptionalSerde,
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