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
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for CloneOperationCommonResponse
Auto Trait Implementations§
impl Freeze for CloneOperationCommonResponse
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