pub struct WireReplyRef {
pub message_id: i64,
pub from: Option<String>,
pub text: Option<String>,
}Expand description
The message an inbound message replies to.
Fields§
§message_id: i64Replied-to message id.
from: Option<String>Replied-to author display name.
text: Option<String>Replied-to text.
Trait Implementations§
Source§impl Clone for WireReplyRef
impl Clone for WireReplyRef
Source§fn clone(&self) -> WireReplyRef
fn clone(&self) -> WireReplyRef
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 WireReplyRef
impl Debug for WireReplyRef
Source§impl<'de> Deserialize<'de> for WireReplyRef
impl<'de> Deserialize<'de> for WireReplyRef
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
impl Eq for WireReplyRef
Source§impl PartialEq for WireReplyRef
impl PartialEq for WireReplyRef
Source§impl Serialize for WireReplyRef
impl Serialize for WireReplyRef
impl StructuralPartialEq for WireReplyRef
Auto Trait Implementations§
impl Freeze for WireReplyRef
impl RefUnwindSafe for WireReplyRef
impl Send for WireReplyRef
impl Sync for WireReplyRef
impl Unpin for WireReplyRef
impl UnsafeUnpin for WireReplyRef
impl UnwindSafe for WireReplyRef
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