pub struct DestroyReport {
pub inputs_abandoned: usize,
}Expand description
Report from a destroy operation.
Fields§
§inputs_abandoned: usizeHow many non-terminal inputs were abandoned.
Trait Implementations§
Source§impl Clone for DestroyReport
impl Clone for DestroyReport
Source§fn clone(&self) -> DestroyReport
fn clone(&self) -> DestroyReport
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 DestroyReport
impl Debug for DestroyReport
Source§impl<'de> Deserialize<'de> for DestroyReport
impl<'de> Deserialize<'de> for DestroyReport
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
Auto Trait Implementations§
impl Freeze for DestroyReport
impl RefUnwindSafe for DestroyReport
impl Send for DestroyReport
impl Sync for DestroyReport
impl Unpin for DestroyReport
impl UnsafeUnpin for DestroyReport
impl UnwindSafe for DestroyReport
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