pub struct CaptureState { /* private fields */ }Expand description
Per-iteration mutable capture state. Created (or cleared) at the start of
each iteration. No Arc, no Mutex, no cross-iteration leakage.
Implementations§
Trait Implementations§
Source§impl Debug for CaptureState
impl Debug for CaptureState
Source§impl Default for CaptureState
impl Default for CaptureState
Source§fn default() -> CaptureState
fn default() -> CaptureState
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for CaptureState
impl RefUnwindSafe for CaptureState
impl Send for CaptureState
impl Sync for CaptureState
impl Unpin for CaptureState
impl UnsafeUnpin for CaptureState
impl UnwindSafe for CaptureState
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