pub struct FallbackReport {
pub resource_kind: &'static str,
pub resource_name: String,
pub field: Option<&'static str>,
pub fallbacks: Vec<LidFallback>,
}Expand description
Drift-fallback summary for one resource (and field, for email_template). Aggregated across the run and surfaced as a “Notice” block after the diff / apply output so the operator can see which links the local template introduced that the remote body didn’t carry.
Fields§
§resource_kind: &'static str§resource_name: String§field: Option<&'static str>§fallbacks: Vec<LidFallback>Trait Implementations§
Source§impl Clone for FallbackReport
impl Clone for FallbackReport
Source§fn clone(&self) -> FallbackReport
fn clone(&self) -> FallbackReport
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 moreAuto Trait Implementations§
impl Freeze for FallbackReport
impl RefUnwindSafe for FallbackReport
impl Send for FallbackReport
impl Sync for FallbackReport
impl Unpin for FallbackReport
impl UnsafeUnpin for FallbackReport
impl UnwindSafe for FallbackReport
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