pub struct SendFileUploadDataResponseModel {
pub object: Option<String>,
pub url: Option<String>,
pub file_upload_type: Option<FileUploadType>,
pub send_response: Option<Box<SendResponseModel>>,
}
Fields§
§object: Option<String>
§url: Option<String>
§file_upload_type: Option<FileUploadType>
§send_response: Option<Box<SendResponseModel>>
Implementations§
Trait Implementations§
Source§impl Clone for SendFileUploadDataResponseModel
impl Clone for SendFileUploadDataResponseModel
Source§fn clone(&self) -> SendFileUploadDataResponseModel
fn clone(&self) -> SendFileUploadDataResponseModel
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 Default for SendFileUploadDataResponseModel
impl Default for SendFileUploadDataResponseModel
Source§fn default() -> SendFileUploadDataResponseModel
fn default() -> SendFileUploadDataResponseModel
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SendFileUploadDataResponseModel
impl<'de> Deserialize<'de> for SendFileUploadDataResponseModel
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 SendFileUploadDataResponseModel
impl PartialEq for SendFileUploadDataResponseModel
Source§fn eq(&self, other: &SendFileUploadDataResponseModel) -> bool
fn eq(&self, other: &SendFileUploadDataResponseModel) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for SendFileUploadDataResponseModel
Auto Trait Implementations§
impl Freeze for SendFileUploadDataResponseModel
impl RefUnwindSafe for SendFileUploadDataResponseModel
impl Send for SendFileUploadDataResponseModel
impl Sync for SendFileUploadDataResponseModel
impl Unpin for SendFileUploadDataResponseModel
impl UnwindSafe for SendFileUploadDataResponseModel
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