pub struct ApplyRecord {
pub id: i64,
pub timestamp: String,
pub profile: String,
pub plan_hash: String,
pub status: ApplyStatus,
pub summary: Option<String>,
}Expand description
A recorded apply operation.
Fields§
§id: i64§timestamp: String§profile: String§plan_hash: String§status: ApplyStatus§summary: Option<String>Trait Implementations§
Source§impl Clone for ApplyRecord
impl Clone for ApplyRecord
Source§fn clone(&self) -> ApplyRecord
fn clone(&self) -> ApplyRecord
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 ApplyRecord
impl Debug for ApplyRecord
Auto Trait Implementations§
impl Freeze for ApplyRecord
impl RefUnwindSafe for ApplyRecord
impl Send for ApplyRecord
impl Sync for ApplyRecord
impl Unpin for ApplyRecord
impl UnsafeUnpin for ApplyRecord
impl UnwindSafe for ApplyRecord
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