pub struct ActionMeta {
pub action_id: String,
pub elapsed_ms: u64,
pub dry_run: bool,
pub retries: u8,
pub attempts_used: u8,
pub timeout_ms: u64,
}Fields§
§action_id: String§elapsed_ms: u64§dry_run: bool§retries: u8§attempts_used: u8§timeout_ms: u64Trait Implementations§
Source§impl Clone for ActionMeta
impl Clone for ActionMeta
Source§fn clone(&self) -> ActionMeta
fn clone(&self) -> ActionMeta
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 ActionMeta
impl Debug for ActionMeta
Auto Trait Implementations§
impl Freeze for ActionMeta
impl RefUnwindSafe for ActionMeta
impl Send for ActionMeta
impl Sync for ActionMeta
impl Unpin for ActionMeta
impl UnsafeUnpin for ActionMeta
impl UnwindSafe for ActionMeta
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