pub struct LambdaCaptureInfo {
pub name: String,
pub is_ref: bool,
pub is_this: bool,
}Expand description
Information about a lambda capture
Fields§
§name: String§is_ref: bool§is_this: boolTrait Implementations§
Source§impl Clone for LambdaCaptureInfo
impl Clone for LambdaCaptureInfo
Source§fn clone(&self) -> LambdaCaptureInfo
fn clone(&self) -> LambdaCaptureInfo
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 moreAuto Trait Implementations§
impl Freeze for LambdaCaptureInfo
impl RefUnwindSafe for LambdaCaptureInfo
impl Send for LambdaCaptureInfo
impl Sync for LambdaCaptureInfo
impl Unpin for LambdaCaptureInfo
impl UnwindSafe for LambdaCaptureInfo
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