pub struct CommandTransition {
pub tenant_id: String,
pub id: String,
pub expected_version: u64,
pub state: CommandState,
pub exit_code: Option<i32>,
pub error_code: Option<String>,
pub now_ms: u64,
}Fields§
§tenant_id: String§id: String§expected_version: u64§state: CommandState§exit_code: Option<i32>§error_code: Option<String>§now_ms: u64Trait Implementations§
Source§impl Clone for CommandTransition
impl Clone for CommandTransition
Source§fn clone(&self) -> CommandTransition
fn clone(&self) -> CommandTransition
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for CommandTransition
impl RefUnwindSafe for CommandTransition
impl Send for CommandTransition
impl Sync for CommandTransition
impl Unpin for CommandTransition
impl UnsafeUnpin for CommandTransition
impl UnwindSafe for CommandTransition
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