Struct zoom_api::types::GetChatMessageResponse
source · pub struct GetChatMessageResponse {Show 13 fields
pub bot_message: Option<Domains>,
pub date_time: Option<NaiveDate>,
pub download_url: String,
pub file_id: String,
pub file_name: String,
pub file_size: i64,
pub id: String,
pub message: String,
pub reactions: Vec<Reactions>,
pub reply_main_message_id: String,
pub reply_main_message_timestamp: i64,
pub sender: String,
pub timestamp: i64,
}Expand description
A chat message object.
Fields
bot_message: Option<Domains>A chat message object.
date_time: Option<NaiveDate>A chat message object.
download_url: StringA chat message object.
file_id: StringA chat message object.
file_name: StringA chat message object.
file_size: i64A chat message object.
id: StringA chat message object.
message: StringA chat message object.
reactions: Vec<Reactions>A chat message object.
reply_main_message_id: StringA chat message object.
reply_main_message_timestamp: i64A chat message object.
sender: StringA chat message object.
timestamp: i64A chat message object.
Trait Implementations
sourceimpl Clone for GetChatMessageResponse
impl Clone for GetChatMessageResponse
sourcefn clone(&self) -> GetChatMessageResponse
fn clone(&self) -> GetChatMessageResponse
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for GetChatMessageResponse
impl Debug for GetChatMessageResponse
sourceimpl<'de> Deserialize<'de> for GetChatMessageResponse
impl<'de> Deserialize<'de> for GetChatMessageResponse
sourcefn 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
sourceimpl JsonSchema for GetChatMessageResponse
impl JsonSchema for GetChatMessageResponse
sourcefn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
sourcefn json_schema(gen: &mut SchemaGenerator) -> Schema
fn json_schema(gen: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
sourcefn is_referenceable() -> bool
fn is_referenceable() -> bool
Whether JSON Schemas generated for this type should be re-used where possible using the
$ref keyword. Read moresourceimpl PartialEq<GetChatMessageResponse> for GetChatMessageResponse
impl PartialEq<GetChatMessageResponse> for GetChatMessageResponse
sourcefn eq(&self, other: &GetChatMessageResponse) -> bool
fn eq(&self, other: &GetChatMessageResponse) -> bool
sourceimpl Serialize for GetChatMessageResponse
impl Serialize for GetChatMessageResponse
impl StructuralPartialEq for GetChatMessageResponse
Auto Trait Implementations
impl RefUnwindSafe for GetChatMessageResponse
impl Send for GetChatMessageResponse
impl Sync for GetChatMessageResponse
impl Unpin for GetChatMessageResponse
impl UnwindSafe for GetChatMessageResponse
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more