pub struct ChatSendMessageResponse {
pub status: String,
pub message: String,
}Expand description
Response after successfully sending a chat message.
Fields§
§status: String§message: StringTrait Implementations§
Source§impl Clone for ChatSendMessageResponse
impl Clone for ChatSendMessageResponse
Source§fn clone(&self) -> ChatSendMessageResponse
fn clone(&self) -> ChatSendMessageResponse
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 Debug for ChatSendMessageResponse
impl Debug for ChatSendMessageResponse
Source§impl<'de> Deserialize<'de> for ChatSendMessageResponse
impl<'de> Deserialize<'de> for ChatSendMessageResponse
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 ChatSendMessageResponse
impl PartialEq for ChatSendMessageResponse
Source§impl Serialize for ChatSendMessageResponse
impl Serialize for ChatSendMessageResponse
impl Eq for ChatSendMessageResponse
impl StructuralPartialEq for ChatSendMessageResponse
Auto Trait Implementations§
impl Freeze for ChatSendMessageResponse
impl RefUnwindSafe for ChatSendMessageResponse
impl Send for ChatSendMessageResponse
impl Sync for ChatSendMessageResponse
impl Unpin for ChatSendMessageResponse
impl UnwindSafe for ChatSendMessageResponse
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