pub struct MemberAccess {
pub visibility: PropertyVisibility,
pub name: String,
pub property_type: PropertyType,
pub args: Vec<(String, ArgumentType)>,
pub body: Vec<Stmt>,
}
Fields§
§visibility: PropertyVisibility
§name: String
§property_type: PropertyType
§args: Vec<(String, ArgumentType)>
§body: Vec<Stmt>
Trait Implementations§
Source§impl Clone for MemberAccess
impl Clone for MemberAccess
Source§fn clone(&self) -> MemberAccess
fn clone(&self) -> MemberAccess
Returns a copy 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 moreSource§impl Debug for MemberAccess
impl Debug for MemberAccess
Source§impl PartialEq for MemberAccess
impl PartialEq for MemberAccess
impl StructuralPartialEq for MemberAccess
Auto Trait Implementations§
impl Freeze for MemberAccess
impl RefUnwindSafe for MemberAccess
impl Send for MemberAccess
impl Sync for MemberAccess
impl Unpin for MemberAccess
impl UnwindSafe for MemberAccess
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