pub struct ResourceInspectionReport {
pub snapshot: ResourceStateSnapshot,
pub findings: Vec<ResourceInspectionFinding>,
pub summary: ResourceInspectionSummary,
}Fields§
§snapshot: ResourceStateSnapshot§findings: Vec<ResourceInspectionFinding>§summary: ResourceInspectionSummaryImplementations§
Source§impl ResourceInspectionReport
impl ResourceInspectionReport
pub fn from_snapshot( snapshot: ResourceStateSnapshot, all_activations: &[ActivationRecord], store: Option<&StoreReady>, ) -> Self
pub fn from_snapshot_with_owner_index( snapshot: ResourceStateSnapshot, activation_owners: &HashMap<PathBuf, Vec<ResourceId>>, store: Option<&StoreReady>, ) -> Self
pub fn is_clean(&self) -> bool
Trait Implementations§
Source§impl Clone for ResourceInspectionReport
impl Clone for ResourceInspectionReport
Source§fn clone(&self) -> ResourceInspectionReport
fn clone(&self) -> ResourceInspectionReport
Returns a duplicate of the value. Read more
1.0.0 · 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 ResourceInspectionReport
impl Debug for ResourceInspectionReport
Source§impl<'de> Deserialize<'de> for ResourceInspectionReport
impl<'de> Deserialize<'de> for ResourceInspectionReport
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for ResourceInspectionReport
impl PartialEq for ResourceInspectionReport
Source§impl Serialize for ResourceInspectionReport
impl Serialize for ResourceInspectionReport
impl Eq for ResourceInspectionReport
impl StructuralPartialEq for ResourceInspectionReport
Auto Trait Implementations§
impl Freeze for ResourceInspectionReport
impl RefUnwindSafe for ResourceInspectionReport
impl Send for ResourceInspectionReport
impl Sync for ResourceInspectionReport
impl Unpin for ResourceInspectionReport
impl UnsafeUnpin for ResourceInspectionReport
impl UnwindSafe for ResourceInspectionReport
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.