pub struct ObjAsStructInstanceWithFieldAccess {
pub struct_obj: Box<StructObj>,
pub obj: Box<Obj>,
pub field_name: String,
}Fields§
§struct_obj: Box<StructObj>§obj: Box<Obj>§field_name: StringImplementations§
Trait Implementations§
Source§impl Clone for ObjAsStructInstanceWithFieldAccess
impl Clone for ObjAsStructInstanceWithFieldAccess
Source§fn clone(&self) -> ObjAsStructInstanceWithFieldAccess
fn clone(&self) -> ObjAsStructInstanceWithFieldAccess
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl From<ObjAsStructInstanceWithFieldAccess> for Obj
impl From<ObjAsStructInstanceWithFieldAccess> for Obj
Source§fn from(s: ObjAsStructInstanceWithFieldAccess) -> Self
fn from(s: ObjAsStructInstanceWithFieldAccess) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ObjAsStructInstanceWithFieldAccess
impl RefUnwindSafe for ObjAsStructInstanceWithFieldAccess
impl !Send for ObjAsStructInstanceWithFieldAccess
impl !Sync for ObjAsStructInstanceWithFieldAccess
impl Unpin for ObjAsStructInstanceWithFieldAccess
impl UnsafeUnpin for ObjAsStructInstanceWithFieldAccess
impl UnwindSafe for ObjAsStructInstanceWithFieldAccess
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