pub struct PendingEntry {
pub id: String,
pub page: String,
pub r: u32,
pub message: String,
pub secret: bool,
pub token: String,
pub group: Option<String>,
pub created_at: Instant,
}Expand description
One entry in the pending-input queue. Visible-to-the-user fields
(page, r, message, secret) are surfaced by vs pending list; the daemon-internal fields (token, group) are passed
through to the vs_act fill call on fulfillment.
Fields§
§id: String§page: String§r: u32§message: String§secret: bool§token: String§group: Option<String>§created_at: InstantTrait Implementations§
Source§impl Clone for PendingEntry
impl Clone for PendingEntry
Source§fn clone(&self) -> PendingEntry
fn clone(&self) -> PendingEntry
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 PendingEntry
impl RefUnwindSafe for PendingEntry
impl Send for PendingEntry
impl Sync for PendingEntry
impl Unpin for PendingEntry
impl UnsafeUnpin for PendingEntry
impl UnwindSafe for PendingEntry
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