pub struct MessageObjectIncompleteDetails {
pub reason: MessageObjectIncompleteDetailsReason,
}
Expand description
On an incomplete message, details about why the message is incomplete.
Fields§
§reason: MessageObjectIncompleteDetailsReason
The reason the message is incomplete.
Implementations§
Trait Implementations§
Source§impl Clone for MessageObjectIncompleteDetails
impl Clone for MessageObjectIncompleteDetails
Source§fn clone(&self) -> MessageObjectIncompleteDetails
fn clone(&self) -> MessageObjectIncompleteDetails
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<'de> Deserialize<'de> for MessageObjectIncompleteDetails
impl<'de> Deserialize<'de> for MessageObjectIncompleteDetails
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 MessageObjectIncompleteDetails
impl PartialEq for MessageObjectIncompleteDetails
Source§fn eq(&self, other: &MessageObjectIncompleteDetails) -> bool
fn eq(&self, other: &MessageObjectIncompleteDetails) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl Copy for MessageObjectIncompleteDetails
impl StructuralPartialEq for MessageObjectIncompleteDetails
Auto Trait Implementations§
impl Freeze for MessageObjectIncompleteDetails
impl RefUnwindSafe for MessageObjectIncompleteDetails
impl Send for MessageObjectIncompleteDetails
impl Sync for MessageObjectIncompleteDetails
impl Unpin for MessageObjectIncompleteDetails
impl UnwindSafe for MessageObjectIncompleteDetails
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