pub struct FieldAccessWithMod {
pub mod_name: String,
pub name: String,
pub field: String,
}Fields§
§mod_name: String§name: String§field: StringImplementations§
Source§impl FieldAccessWithMod
impl FieldAccessWithMod
pub fn new(mod_name: String, name: String, field: String) -> Self
pub fn with_appended_field(&self, field_name: &str) -> FieldAccessWithMod
Trait Implementations§
Source§impl Clone for FieldAccessWithMod
impl Clone for FieldAccessWithMod
Source§fn clone(&self) -> FieldAccessWithMod
fn clone(&self) -> FieldAccessWithMod
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 FieldAccessWithMod
impl RefUnwindSafe for FieldAccessWithMod
impl Send for FieldAccessWithMod
impl Sync for FieldAccessWithMod
impl Unpin for FieldAccessWithMod
impl UnsafeUnpin for FieldAccessWithMod
impl UnwindSafe for FieldAccessWithMod
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