pub struct Approval {
pub id: String,
pub subject: Ref,
pub decision: ApprovalDecision,
}Expand description
Approval presented for a reviewed operation.
Fields§
§id: StringStable approval identity.
subject: RefExact subject this approval authorizes.
decision: ApprovalDecisionDecision asserted by the approver.
Trait Implementations§
impl Eq for Approval
impl StructuralPartialEq for Approval
Auto Trait Implementations§
impl Freeze for Approval
impl RefUnwindSafe for Approval
impl Send for Approval
impl Sync for Approval
impl Unpin for Approval
impl UnsafeUnpin for Approval
impl UnwindSafe for Approval
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