pub struct ProvisionRun {
pub id: i64,
pub peer_name: String,
pub ssh_target: String,
pub status: ProvisionStatus,
pub items_total: u32,
pub items_done: u32,
pub started_at: String,
pub completed_at: Option<String>,
pub error_message: Option<String>,
}Expand description
A provisioning run — one complete sync to a peer.
Fields§
§id: i64§peer_name: String§ssh_target: String§status: ProvisionStatus§items_total: u32§items_done: u32§started_at: String§completed_at: Option<String>§error_message: Option<String>Trait Implementations§
Source§impl Clone for ProvisionRun
impl Clone for ProvisionRun
Source§fn clone(&self) -> ProvisionRun
fn clone(&self) -> ProvisionRun
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 ProvisionRun
impl Debug for ProvisionRun
Source§impl<'de> Deserialize<'de> for ProvisionRun
impl<'de> Deserialize<'de> for ProvisionRun
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
Auto Trait Implementations§
impl Freeze for ProvisionRun
impl RefUnwindSafe for ProvisionRun
impl Send for ProvisionRun
impl Sync for ProvisionRun
impl Unpin for ProvisionRun
impl UnsafeUnpin for ProvisionRun
impl UnwindSafe for ProvisionRun
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