Struct bitwarden_api_api::models::attachment_upload_data_response_model::AttachmentUploadDataResponseModel
source · 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<'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
This method 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