pub struct AtelierToolEvaluation {
pub descriptor: AtelierToolDescriptor,
pub decision: GuardDecision,
pub cassette: DevCassette,
}Expand description
Result of one tool action evaluation and its evidence cassette.
Fields§
§descriptor: AtelierToolDescriptorDescriptor of the evaluated tool action.
decision: GuardDecisionGuard decision for the action.
cassette: DevCassetteEvidence cassette recording the decision.
Trait Implementations§
Source§impl Clone for AtelierToolEvaluation
impl Clone for AtelierToolEvaluation
Source§fn clone(&self) -> AtelierToolEvaluation
fn clone(&self) -> AtelierToolEvaluation
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 AtelierToolEvaluation
impl Debug for AtelierToolEvaluation
impl Eq for AtelierToolEvaluation
Source§impl PartialEq for AtelierToolEvaluation
impl PartialEq for AtelierToolEvaluation
Source§fn eq(&self, other: &AtelierToolEvaluation) -> bool
fn eq(&self, other: &AtelierToolEvaluation) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for AtelierToolEvaluation
Auto Trait Implementations§
impl Freeze for AtelierToolEvaluation
impl RefUnwindSafe for AtelierToolEvaluation
impl Send for AtelierToolEvaluation
impl Sync for AtelierToolEvaluation
impl Unpin for AtelierToolEvaluation
impl UnsafeUnpin for AtelierToolEvaluation
impl UnwindSafe for AtelierToolEvaluation
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