pub struct ListMessageFilesResponse {
pub object: String,
pub data: Vec<MessageFile>,
pub first_id: Option<String>,
pub last_id: Option<String>,
pub has_more: bool,
}Expand description
Response containing a list of message files.
Fields§
§object: String§data: Vec<MessageFile>§first_id: Option<String>§last_id: Option<String>§has_more: boolTrait Implementations§
Source§impl Clone for ListMessageFilesResponse
impl Clone for ListMessageFilesResponse
Source§fn clone(&self) -> ListMessageFilesResponse
fn clone(&self) -> ListMessageFilesResponse
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 ListMessageFilesResponse
impl Debug for ListMessageFilesResponse
Source§impl<'de> Deserialize<'de> for ListMessageFilesResponse
impl<'de> Deserialize<'de> for ListMessageFilesResponse
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
Auto Trait Implementations§
impl Freeze for ListMessageFilesResponse
impl RefUnwindSafe for ListMessageFilesResponse
impl Send for ListMessageFilesResponse
impl Sync for ListMessageFilesResponse
impl Unpin for ListMessageFilesResponse
impl UnwindSafe for ListMessageFilesResponse
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