pub struct ApprovalRequest {Show 16 fields
pub approval_id: String,
pub approval_key: String,
pub run_id: String,
pub session_id: String,
pub step_id: String,
pub tool_name: String,
pub risk_level: String,
pub status: String,
pub reason: String,
pub request_hash: String,
pub request_ref: String,
pub requested_by: String,
pub approved_by: Option<String>,
pub decision_reason: Option<String>,
pub created_at: f64,
pub updated_at: f64,
}Fields§
§approval_id: String§approval_key: String§run_id: String§session_id: String§step_id: String§tool_name: String§risk_level: String§status: String§reason: String§request_hash: String§request_ref: String§requested_by: String§approved_by: Option<String>§decision_reason: Option<String>§created_at: f64§updated_at: f64Trait Implementations§
Source§impl Clone for ApprovalRequest
impl Clone for ApprovalRequest
Source§fn clone(&self) -> ApprovalRequest
fn clone(&self) -> ApprovalRequest
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 ApprovalRequest
impl RefUnwindSafe for ApprovalRequest
impl Send for ApprovalRequest
impl Sync for ApprovalRequest
impl Unpin for ApprovalRequest
impl UnsafeUnpin for ApprovalRequest
impl UnwindSafe for ApprovalRequest
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