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