pub struct QueuedAction {
pub kind: String,
pub frontier: PathBuf,
pub args: Value,
pub queued_at: String,
}Expand description
A queued draft action. kind matches a write tool name
(propose_review, propose_note, propose_revise_confidence,
propose_retract, accept_proposal, reject_proposal); args is
the tool-specific argument bundle without the signature field —
vela queue sign constructs the signature at sign-time.
frontier is the path to the frontier file the action targets.
Multiple frontiers can be queued in a single queue file.
Fields§
§kind: String§frontier: PathBuf§args: Value§queued_at: StringTrait Implementations§
Source§impl Clone for QueuedAction
impl Clone for QueuedAction
Source§fn clone(&self) -> QueuedAction
fn clone(&self) -> QueuedAction
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 moreSource§impl Debug for QueuedAction
impl Debug for QueuedAction
Source§impl<'de> Deserialize<'de> for QueuedAction
impl<'de> Deserialize<'de> for QueuedAction
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for QueuedAction
impl RefUnwindSafe for QueuedAction
impl Send for QueuedAction
impl Sync for QueuedAction
impl Unpin for QueuedAction
impl UnsafeUnpin for QueuedAction
impl UnwindSafe for QueuedAction
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