pub struct FieldEscapeInfo {
pub struct_type: String,
pub field_name: String,
pub escapes_via_return: bool,
pub escapes_via_store: bool,
pub escapes_via_call: bool,
}Fields§
§struct_type: String§field_name: String§escapes_via_return: bool§escapes_via_store: bool§escapes_via_call: boolImplementations§
Trait Implementations§
Source§impl Clone for FieldEscapeInfo
impl Clone for FieldEscapeInfo
Source§fn clone(&self) -> FieldEscapeInfo
fn clone(&self) -> FieldEscapeInfo
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 FieldEscapeInfo
impl RefUnwindSafe for FieldEscapeInfo
impl Send for FieldEscapeInfo
impl Sync for FieldEscapeInfo
impl Unpin for FieldEscapeInfo
impl UnsafeUnpin for FieldEscapeInfo
impl UnwindSafe for FieldEscapeInfo
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