pub struct ReplicationExecution {
pub id: Option<i32>,
pub policy_id: Option<i32>,
pub status: Option<String>,
pub trigger: Option<String>,
pub start_time: Option<String>,
pub end_time: Option<String>,
pub status_text: Option<String>,
pub total: Option<i32>,
pub failed: Option<i32>,
pub succeed: Option<i32>,
pub in_progress: Option<i32>,
pub stopped: Option<i32>,
}Expand description
ReplicationExecution : The replication execution
Fields§
§id: Option<i32>The ID of the execution
policy_id: Option<i32>The ID if the policy that the execution belongs to
status: Option<String>The status of the execution
trigger: Option<String>The trigger mode
start_time: Option<String>The start time
end_time: Option<String>The end time
status_text: Option<String>The status text
total: Option<i32>The total count of all executions
failed: Option<i32>The count of failed executions
succeed: Option<i32>The count of succeed executions
in_progress: Option<i32>The count of in_progress executions
stopped: Option<i32>The count of stopped executions
Implementations§
Source§impl ReplicationExecution
impl ReplicationExecution
Sourcepub fn new() -> ReplicationExecution
pub fn new() -> ReplicationExecution
The replication execution
Trait Implementations§
Source§impl Clone for ReplicationExecution
impl Clone for ReplicationExecution
Source§fn clone(&self) -> ReplicationExecution
fn clone(&self) -> ReplicationExecution
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 Debug for ReplicationExecution
impl Debug for ReplicationExecution
Source§impl Default for ReplicationExecution
impl Default for ReplicationExecution
Source§fn default() -> ReplicationExecution
fn default() -> ReplicationExecution
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ReplicationExecution
impl<'de> Deserialize<'de> for ReplicationExecution
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 ReplicationExecution
impl PartialEq for ReplicationExecution
Source§impl Serialize for ReplicationExecution
impl Serialize for ReplicationExecution
impl StructuralPartialEq for ReplicationExecution
Auto Trait Implementations§
impl Freeze for ReplicationExecution
impl RefUnwindSafe for ReplicationExecution
impl Send for ReplicationExecution
impl Sync for ReplicationExecution
impl Unpin for ReplicationExecution
impl UnwindSafe for ReplicationExecution
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