pub struct DraftRequest {
pub name: Name,
pub cadence: Cadence,
pub queue: QueueName,
}Expand description
Draft request used by the agent tool workflow; it exposes tightly-scoped read/draft helpers agents can call behind review gates.
Fields§
§name: NameName copied from reviewed source input for audit, reviewer explanation, or agent context; callers must not invent or mutate it.
cadence: CadenceCadence copied from reviewed source input for audit, reviewer explanation, or agent context; callers must not invent or mutate it.
queue: QueueNameQueue copied from reviewed source input for audit, reviewer explanation, or agent context; callers must not invent or mutate it.
Trait Implementations§
Source§impl Clone for DraftRequest
impl Clone for DraftRequest
Source§fn clone(&self) -> DraftRequest
fn clone(&self) -> DraftRequest
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 DraftRequest
impl Debug for DraftRequest
Source§impl<'de> Deserialize<'de> for DraftRequest
impl<'de> Deserialize<'de> for DraftRequest
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
Source§impl PartialEq for DraftRequest
impl PartialEq for DraftRequest
Source§impl Serialize for DraftRequest
impl Serialize for DraftRequest
impl Eq for DraftRequest
impl StructuralPartialEq for DraftRequest
Auto Trait Implementations§
impl Freeze for DraftRequest
impl RefUnwindSafe for DraftRequest
impl Send for DraftRequest
impl Sync for DraftRequest
impl Unpin for DraftRequest
impl UnsafeUnpin for DraftRequest
impl UnwindSafe for DraftRequest
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