pub struct CilMethodRef {
pub call_conv: CilCallConv,
pub return_type: CilType,
pub declaring_type: CilType,
pub name: String,
pub param_types: Vec<CilType>,
}Expand description
A reference to a .NET method for use in call instructions.
Fields§
§call_conv: CilCallConv§return_type: CilType§declaring_type: CilType§name: String§param_types: Vec<CilType>Trait Implementations§
Source§impl Clone for CilMethodRef
impl Clone for CilMethodRef
Source§fn clone(&self) -> CilMethodRef
fn clone(&self) -> CilMethodRef
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 moreSource§impl Debug for CilMethodRef
impl Debug for CilMethodRef
Auto Trait Implementations§
impl Freeze for CilMethodRef
impl RefUnwindSafe for CilMethodRef
impl Send for CilMethodRef
impl Sync for CilMethodRef
impl Unpin for CilMethodRef
impl UnsafeUnpin for CilMethodRef
impl UnwindSafe for CilMethodRef
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