pub struct ImplMemberSignature {
pub name: LocalIdentifier,
pub self_param: SelfParameter,
pub params: Vec<Parameter>,
pub return_type: Type,
}
Fields§
§name: LocalIdentifier
§self_param: SelfParameter
§params: Vec<Parameter>
§return_type: Type
Trait Implementations§
Source§impl Clone for ImplMemberSignature
impl Clone for ImplMemberSignature
Source§fn clone(&self) -> ImplMemberSignature
fn clone(&self) -> ImplMemberSignature
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 moreAuto Trait Implementations§
impl Freeze for ImplMemberSignature
impl RefUnwindSafe for ImplMemberSignature
impl Send for ImplMemberSignature
impl Sync for ImplMemberSignature
impl Unpin for ImplMemberSignature
impl UnwindSafe for ImplMemberSignature
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