pub struct PatchedBulkWritableSoftwareImageFileRequest {Show 13 fields
pub id: Uuid,
pub image_file_name: Option<String>,
pub image_file_checksum: Option<String>,
pub hashing_algorithm: Option<Box<BulkWritableSoftwareImageFileRequestHashingAlgorithm>>,
pub image_file_size: Option<Option<i64>>,
pub download_url: Option<String>,
pub default_image: Option<bool>,
pub software_version: Option<Box<ApprovalWorkflowStageResponseApprovalWorkflowStage>>,
pub external_integration: Option<Option<Box<ApprovalWorkflowUser>>>,
pub status: Option<Box<ApprovalWorkflowStageResponseApprovalWorkflowStage>>,
pub custom_fields: Option<HashMap<String, Value>>,
pub relationships: Option<HashMap<String, ApprovalWorkflowDefinitionRequestRelationshipsValue>>,
pub tags: Option<Vec<ApprovalWorkflowStageResponseApprovalWorkflowStage>>,
}Expand description
PatchedBulkWritableSoftwareImageFileRequest : Base class to use for serializers based on OrganizationalModel or PrimaryModel. Can also be used for models derived from BaseModel, so long as they support custom fields, notes, and relationships.
Fields§
§id: Uuid§image_file_name: Option<String>§image_file_checksum: Option<String>§hashing_algorithm: Option<Box<BulkWritableSoftwareImageFileRequestHashingAlgorithm>>§image_file_size: Option<Option<i64>>Image file size in bytes
download_url: Option<String>§default_image: Option<bool>Is the default image for this software version
software_version: Option<Box<ApprovalWorkflowStageResponseApprovalWorkflowStage>>§external_integration: Option<Option<Box<ApprovalWorkflowUser>>>§status: Option<Box<ApprovalWorkflowStageResponseApprovalWorkflowStage>>§custom_fields: Option<HashMap<String, Value>>§relationships: Option<HashMap<String, ApprovalWorkflowDefinitionRequestRelationshipsValue>>Implementations§
Source§impl PatchedBulkWritableSoftwareImageFileRequest
impl PatchedBulkWritableSoftwareImageFileRequest
Sourcepub fn new(id: Uuid) -> PatchedBulkWritableSoftwareImageFileRequest
pub fn new(id: Uuid) -> PatchedBulkWritableSoftwareImageFileRequest
Base class to use for serializers based on OrganizationalModel or PrimaryModel. Can also be used for models derived from BaseModel, so long as they support custom fields, notes, and relationships.
Trait Implementations§
Source§impl Clone for PatchedBulkWritableSoftwareImageFileRequest
impl Clone for PatchedBulkWritableSoftwareImageFileRequest
Source§fn clone(&self) -> PatchedBulkWritableSoftwareImageFileRequest
fn clone(&self) -> PatchedBulkWritableSoftwareImageFileRequest
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 Default for PatchedBulkWritableSoftwareImageFileRequest
impl Default for PatchedBulkWritableSoftwareImageFileRequest
Source§fn default() -> PatchedBulkWritableSoftwareImageFileRequest
fn default() -> PatchedBulkWritableSoftwareImageFileRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PatchedBulkWritableSoftwareImageFileRequest
impl<'de> Deserialize<'de> for PatchedBulkWritableSoftwareImageFileRequest
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 PatchedBulkWritableSoftwareImageFileRequest
impl PartialEq for PatchedBulkWritableSoftwareImageFileRequest
Source§fn eq(&self, other: &PatchedBulkWritableSoftwareImageFileRequest) -> bool
fn eq(&self, other: &PatchedBulkWritableSoftwareImageFileRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for PatchedBulkWritableSoftwareImageFileRequest
Auto Trait Implementations§
impl Freeze for PatchedBulkWritableSoftwareImageFileRequest
impl RefUnwindSafe for PatchedBulkWritableSoftwareImageFileRequest
impl Send for PatchedBulkWritableSoftwareImageFileRequest
impl Sync for PatchedBulkWritableSoftwareImageFileRequest
impl Unpin for PatchedBulkWritableSoftwareImageFileRequest
impl UnsafeUnpin for PatchedBulkWritableSoftwareImageFileRequest
impl UnwindSafe for PatchedBulkWritableSoftwareImageFileRequest
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