pub struct TransitionUpdate {
pub started_at: Option<DateTime<Utc>>,
pub finished_at: Option<DateTime<Utc>>,
pub exit_code: Option<i32>,
pub final_pwd: Option<String>,
pub error: Option<String>,
}Fields§
§started_at: Option<DateTime<Utc>>§finished_at: Option<DateTime<Utc>>§exit_code: Option<i32>§final_pwd: Option<String>§error: Option<String>Trait Implementations§
Source§impl Clone for TransitionUpdate
impl Clone for TransitionUpdate
Source§fn clone(&self) -> TransitionUpdate
fn clone(&self) -> TransitionUpdate
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 TransitionUpdate
impl Debug for TransitionUpdate
Source§impl Default for TransitionUpdate
impl Default for TransitionUpdate
Source§fn default() -> TransitionUpdate
fn default() -> TransitionUpdate
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for TransitionUpdate
impl RefUnwindSafe for TransitionUpdate
impl Send for TransitionUpdate
impl Sync for TransitionUpdate
impl Unpin for TransitionUpdate
impl UnsafeUnpin for TransitionUpdate
impl UnwindSafe for TransitionUpdate
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