pub struct DataBoxDiskCopyLogDetails {
pub copy_log_details: CopyLogDetails,
pub disk_serial_number: Option<String>,
pub error_log_link: Option<String>,
pub verbose_log_link: Option<String>,
}
Expand description
Copy Log Details for a disk
Fields§
§copy_log_details: CopyLogDetails
§disk_serial_number: Option<String>
Disk Serial Number.
error_log_link: Option<String>
Link for copy error logs.
verbose_log_link: Option<String>
Link for copy verbose logs.
Implementations§
source§impl DataBoxDiskCopyLogDetails
impl DataBoxDiskCopyLogDetails
pub fn new(copy_log_details: CopyLogDetails) -> Self
Trait Implementations§
source§impl Clone for DataBoxDiskCopyLogDetails
impl Clone for DataBoxDiskCopyLogDetails
source§fn clone(&self) -> DataBoxDiskCopyLogDetails
fn clone(&self) -> DataBoxDiskCopyLogDetails
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 DataBoxDiskCopyLogDetails
impl Debug for DataBoxDiskCopyLogDetails
source§impl<'de> Deserialize<'de> for DataBoxDiskCopyLogDetails
impl<'de> Deserialize<'de> for DataBoxDiskCopyLogDetails
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 DataBoxDiskCopyLogDetails
impl PartialEq for DataBoxDiskCopyLogDetails
source§fn eq(&self, other: &DataBoxDiskCopyLogDetails) -> bool
fn eq(&self, other: &DataBoxDiskCopyLogDetails) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for DataBoxDiskCopyLogDetails
Auto Trait Implementations§
impl RefUnwindSafe for DataBoxDiskCopyLogDetails
impl Send for DataBoxDiskCopyLogDetails
impl Sync for DataBoxDiskCopyLogDetails
impl Unpin for DataBoxDiskCopyLogDetails
impl UnwindSafe for DataBoxDiskCopyLogDetails
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