pub struct ReplyMessageResponse {
pub sent_messages: Vec<SentMessage>,
}
Fields§
§sent_messages: Vec<SentMessage>
Array of sent messages.
Implementations§
Source§impl ReplyMessageResponse
impl ReplyMessageResponse
pub fn new(sent_messages: Vec<SentMessage>) -> ReplyMessageResponse
Trait Implementations§
Source§impl Clone for ReplyMessageResponse
impl Clone for ReplyMessageResponse
Source§fn clone(&self) -> ReplyMessageResponse
fn clone(&self) -> ReplyMessageResponse
Returns a copy 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 ReplyMessageResponse
impl Debug for ReplyMessageResponse
Source§impl Default for ReplyMessageResponse
impl Default for ReplyMessageResponse
Source§fn default() -> ReplyMessageResponse
fn default() -> ReplyMessageResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ReplyMessageResponse
impl<'de> Deserialize<'de> for ReplyMessageResponse
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 ReplyMessageResponse
impl PartialEq for ReplyMessageResponse
Source§impl Serialize for ReplyMessageResponse
impl Serialize for ReplyMessageResponse
impl StructuralPartialEq for ReplyMessageResponse
Auto Trait Implementations§
impl Freeze for ReplyMessageResponse
impl RefUnwindSafe for ReplyMessageResponse
impl Send for ReplyMessageResponse
impl Sync for ReplyMessageResponse
impl Unpin for ReplyMessageResponse
impl UnwindSafe for ReplyMessageResponse
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