pub struct SecurityTasksResponseModel {
pub object: Option<String>,
pub id: Option<Uuid>,
pub organization_id: Option<Uuid>,
pub cipher_id: Option<Uuid>,
pub type: Option<SecurityTaskType>,
pub status: Option<SecurityTaskStatus>,
pub creation_date: Option<String>,
pub revision_date: Option<String>,
}
Fields§
§object: Option<String>
§id: Option<Uuid>
§organization_id: Option<Uuid>
§cipher_id: Option<Uuid>
§type: Option<SecurityTaskType>
§status: Option<SecurityTaskStatus>
§creation_date: Option<String>
§revision_date: Option<String>
Implementations§
Source§impl SecurityTasksResponseModel
impl SecurityTasksResponseModel
pub fn new() -> SecurityTasksResponseModel
Trait Implementations§
Source§impl Clone for SecurityTasksResponseModel
impl Clone for SecurityTasksResponseModel
Source§fn clone(&self) -> SecurityTasksResponseModel
fn clone(&self) -> SecurityTasksResponseModel
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 Debug for SecurityTasksResponseModel
impl Debug for SecurityTasksResponseModel
Source§impl Default for SecurityTasksResponseModel
impl Default for SecurityTasksResponseModel
Source§fn default() -> SecurityTasksResponseModel
fn default() -> SecurityTasksResponseModel
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SecurityTasksResponseModel
impl<'de> Deserialize<'de> for SecurityTasksResponseModel
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
impl StructuralPartialEq for SecurityTasksResponseModel
Auto Trait Implementations§
impl Freeze for SecurityTasksResponseModel
impl RefUnwindSafe for SecurityTasksResponseModel
impl Send for SecurityTasksResponseModel
impl Sync for SecurityTasksResponseModel
impl Unpin for SecurityTasksResponseModel
impl UnwindSafe for SecurityTasksResponseModel
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