pub struct UploadOciDriverTaskOutput {
pub driver_package_name: Option<String>,
pub validation_errors: Vec<ReportableException>,
}
Expand description
Output for the service task to upload an OCI driver.
Fields§
§driver_package_name: Option<String>
The name of the driver package that was validated and uploaded.
validation_errors: Vec<ReportableException>
Validation errors
Implementations§
Trait Implementations§
source§impl Clone for UploadOciDriverTaskOutput
impl Clone for UploadOciDriverTaskOutput
source§fn clone(&self) -> UploadOciDriverTaskOutput
fn clone(&self) -> UploadOciDriverTaskOutput
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 UploadOciDriverTaskOutput
impl Debug for UploadOciDriverTaskOutput
source§impl Default for UploadOciDriverTaskOutput
impl Default for UploadOciDriverTaskOutput
source§fn default() -> UploadOciDriverTaskOutput
fn default() -> UploadOciDriverTaskOutput
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for UploadOciDriverTaskOutput
impl<'de> Deserialize<'de> for UploadOciDriverTaskOutput
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<UploadOciDriverTaskOutput> for UploadOciDriverTaskOutput
impl PartialEq<UploadOciDriverTaskOutput> for UploadOciDriverTaskOutput
source§fn eq(&self, other: &UploadOciDriverTaskOutput) -> bool
fn eq(&self, other: &UploadOciDriverTaskOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for UploadOciDriverTaskOutput
Auto Trait Implementations§
impl RefUnwindSafe for UploadOciDriverTaskOutput
impl Send for UploadOciDriverTaskOutput
impl Sync for UploadOciDriverTaskOutput
impl Unpin for UploadOciDriverTaskOutput
impl UnwindSafe for UploadOciDriverTaskOutput
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