pub struct PendingActionInfo {
pub key: String,
pub created_at: DateTime<Utc>,
}Expand description
Metadata about a pending action waiting for confirmation.
Fields§
§key: StringThe confirmation key.
created_at: DateTime<Utc>When the action was first queued for confirmation.
Trait Implementations§
Source§impl Clone for PendingActionInfo
impl Clone for PendingActionInfo
Source§fn clone(&self) -> PendingActionInfo
fn clone(&self) -> PendingActionInfo
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 PendingActionInfo
impl Debug for PendingActionInfo
Auto Trait Implementations§
impl Freeze for PendingActionInfo
impl RefUnwindSafe for PendingActionInfo
impl Send for PendingActionInfo
impl Sync for PendingActionInfo
impl Unpin for PendingActionInfo
impl UnsafeUnpin for PendingActionInfo
impl UnwindSafe for PendingActionInfo
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