pub struct WorkflowPlanDraftReviewRecord {
pub required_capabilities: Vec<String>,
pub requested_capabilities: Vec<String>,
pub blocked_capabilities: Vec<String>,
pub docs_mcp_used: bool,
pub preview_payload: Option<Value>,
pub created_at_ms: Option<u64>,
pub updated_at_ms: Option<u64>,
pub validation_state: String,
pub validation_status: String,
pub approval_status: String,
}Fields§
§required_capabilities: Vec<String>§requested_capabilities: Vec<String>§blocked_capabilities: Vec<String>§docs_mcp_used: bool§preview_payload: Option<Value>§created_at_ms: Option<u64>§updated_at_ms: Option<u64>§validation_state: String§validation_status: String§approval_status: StringTrait Implementations§
Source§impl Clone for WorkflowPlanDraftReviewRecord
impl Clone for WorkflowPlanDraftReviewRecord
Source§fn clone(&self) -> WorkflowPlanDraftReviewRecord
fn clone(&self) -> WorkflowPlanDraftReviewRecord
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 Default for WorkflowPlanDraftReviewRecord
impl Default for WorkflowPlanDraftReviewRecord
Source§fn default() -> WorkflowPlanDraftReviewRecord
fn default() -> WorkflowPlanDraftReviewRecord
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for WorkflowPlanDraftReviewRecord
impl<'de> Deserialize<'de> for WorkflowPlanDraftReviewRecord
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 WorkflowPlanDraftReviewRecord
impl RefUnwindSafe for WorkflowPlanDraftReviewRecord
impl Send for WorkflowPlanDraftReviewRecord
impl Sync for WorkflowPlanDraftReviewRecord
impl Unpin for WorkflowPlanDraftReviewRecord
impl UnsafeUnpin for WorkflowPlanDraftReviewRecord
impl UnwindSafe for WorkflowPlanDraftReviewRecord
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