pub struct DiffReport<'a> {
pub net_posture: &'a str,
pub reviewer_action: &'a str,
pub summary: DiffPostureSummary,
pub finding_changes: &'a [DiffFindingChange<'a>],
pub policy_changes: &'a [DiffPolicyChange<'a>],
}Fields§
§net_posture: &'a str§reviewer_action: &'a str§summary: DiffPostureSummary§finding_changes: &'a [DiffFindingChange<'a>]§policy_changes: &'a [DiffPolicyChange<'a>]Trait Implementations§
Source§impl<'a> Clone for DiffReport<'a>
impl<'a> Clone for DiffReport<'a>
Source§fn clone(&self) -> DiffReport<'a>
fn clone(&self) -> DiffReport<'a>
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 moreimpl<'a> Copy for DiffReport<'a>
Auto Trait Implementations§
impl<'a> Freeze for DiffReport<'a>
impl<'a> RefUnwindSafe for DiffReport<'a>
impl<'a> Send for DiffReport<'a>
impl<'a> Sync for DiffReport<'a>
impl<'a> Unpin for DiffReport<'a>
impl<'a> UnsafeUnpin for DiffReport<'a>
impl<'a> UnwindSafe for DiffReport<'a>
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