pub struct CloneOperationCommonResponse {
pub clone_statistics: Option<CloneStatistics>,
pub completion_date: Option<OffsetDateTime>,
pub creation_date: Option<OffsetDateTime>,
pub links: Option<ReferenceLinks>,
pub message: Option<String>,
pub op_id: Option<i32>,
pub state: Option<State>,
}
Expand description
Common Response for clone operation
Fields§
§clone_statistics: Option<CloneStatistics>
Clone Statistics Details.
completion_date: Option<OffsetDateTime>
Completion data of the operation
creation_date: Option<OffsetDateTime>
Creation data of the operation
links: Option<ReferenceLinks>
The class to represent a collection of REST reference links.
message: Option<String>
Message related to the job
op_id: Option<i32>
Clone operation Id
state: Option<State>
Clone operation state
Implementations§
Trait Implementations§
source§impl Clone for CloneOperationCommonResponse
impl Clone for CloneOperationCommonResponse
source§fn clone(&self) -> CloneOperationCommonResponse
fn clone(&self) -> CloneOperationCommonResponse
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 CloneOperationCommonResponse
impl Debug for CloneOperationCommonResponse
source§impl Default for CloneOperationCommonResponse
impl Default for CloneOperationCommonResponse
source§fn default() -> CloneOperationCommonResponse
fn default() -> CloneOperationCommonResponse
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for CloneOperationCommonResponse
impl<'de> Deserialize<'de> for CloneOperationCommonResponse
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 CloneOperationCommonResponse
impl PartialEq for CloneOperationCommonResponse
source§fn eq(&self, other: &CloneOperationCommonResponse) -> bool
fn eq(&self, other: &CloneOperationCommonResponse) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for CloneOperationCommonResponse
Auto Trait Implementations§
impl RefUnwindSafe for CloneOperationCommonResponse
impl Send for CloneOperationCommonResponse
impl Sync for CloneOperationCommonResponse
impl Unpin for CloneOperationCommonResponse
impl UnwindSafe for CloneOperationCommonResponse
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