pub struct PolicyReport {
pub workflow_files: usize,
pub script_usages: Vec<ScriptUsage>,
pub policy_violations: Vec<PolicyViolation>,
pub summary: PolicySummary,
}Fields§
§workflow_files: usize§script_usages: Vec<ScriptUsage>§policy_violations: Vec<PolicyViolation>§summary: PolicySummaryImplementations§
Source§impl PolicyReport
impl PolicyReport
pub const fn has_findings(&self) -> bool
Trait Implementations§
Source§impl Clone for PolicyReport
impl Clone for PolicyReport
Source§fn clone(&self) -> PolicyReport
fn clone(&self) -> PolicyReport
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 PolicyReport
impl Debug for PolicyReport
impl Eq for PolicyReport
Source§impl PartialEq for PolicyReport
impl PartialEq for PolicyReport
impl StructuralPartialEq for PolicyReport
Auto Trait Implementations§
impl Freeze for PolicyReport
impl RefUnwindSafe for PolicyReport
impl Send for PolicyReport
impl Sync for PolicyReport
impl Unpin for PolicyReport
impl UnsafeUnpin for PolicyReport
impl UnwindSafe for PolicyReport
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.