pub struct UploadOciDriverTaskProperties {
pub project_task_properties: ProjectTaskProperties,
pub input: Option<UploadOciDriverTaskInput>,
pub output: Vec<UploadOciDriverTaskOutput>,
}
Expand description
Properties for the task that uploads an OCI driver.
Fields§
§project_task_properties: ProjectTaskProperties
§input: Option<UploadOciDriverTaskInput>
Input for the service task to upload an OCI driver.
output: Vec<UploadOciDriverTaskOutput>
Task output. This is ignored if submitted.
Implementations§
Source§impl UploadOciDriverTaskProperties
impl UploadOciDriverTaskProperties
pub fn new(project_task_properties: ProjectTaskProperties) -> Self
Trait Implementations§
Source§impl Clone for UploadOciDriverTaskProperties
impl Clone for UploadOciDriverTaskProperties
Source§fn clone(&self) -> UploadOciDriverTaskProperties
fn clone(&self) -> UploadOciDriverTaskProperties
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<'de> Deserialize<'de> for UploadOciDriverTaskProperties
impl<'de> Deserialize<'de> for UploadOciDriverTaskProperties
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 UploadOciDriverTaskProperties
impl PartialEq for UploadOciDriverTaskProperties
Source§fn eq(&self, other: &UploadOciDriverTaskProperties) -> bool
fn eq(&self, other: &UploadOciDriverTaskProperties) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for UploadOciDriverTaskProperties
Auto Trait Implementations§
impl Freeze for UploadOciDriverTaskProperties
impl RefUnwindSafe for UploadOciDriverTaskProperties
impl Send for UploadOciDriverTaskProperties
impl Sync for UploadOciDriverTaskProperties
impl Unpin for UploadOciDriverTaskProperties
impl UnwindSafe for UploadOciDriverTaskProperties
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