pub struct RecycleReport {
pub inputs_transferred: usize,
}Expand description
Report from a recycle operation (reset driver and recover state).
Fields§
§inputs_transferred: usizeHow many inputs were transferred to the new instance.
Trait Implementations§
Source§impl Clone for RecycleReport
impl Clone for RecycleReport
Source§fn clone(&self) -> RecycleReport
fn clone(&self) -> RecycleReport
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 RecycleReport
impl Debug for RecycleReport
Source§impl<'de> Deserialize<'de> for RecycleReport
impl<'de> Deserialize<'de> for RecycleReport
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 RecycleReport
impl RefUnwindSafe for RecycleReport
impl Send for RecycleReport
impl Sync for RecycleReport
impl Unpin for RecycleReport
impl UnsafeUnpin for RecycleReport
impl UnwindSafe for RecycleReport
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