pub struct MethodType<'t> {
pub attributes: FieldAttributes,
pub method_type: TypeIndex,
pub vtable_offset: Option<u32>,
pub name: RawString<'t>,
}Expand description
The information parsed from a type record with kind LF_ONEMETHOD or LF_ONEMETHOD_ST.
Fields§
§attributes: FieldAttributes§method_type: TypeIndex§vtable_offset: Option<u32>§name: RawString<'t>Trait Implementations§
Source§impl<'t> Clone for MethodType<'t>
impl<'t> Clone for MethodType<'t>
Source§fn clone(&self) -> MethodType<'t>
fn clone(&self) -> MethodType<'t>
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<'t> Debug for MethodType<'t>
impl<'t> Debug for MethodType<'t>
Source§impl<'t> PartialEq for MethodType<'t>
impl<'t> PartialEq for MethodType<'t>
impl<'t> Eq for MethodType<'t>
impl<'t> StructuralPartialEq for MethodType<'t>
Auto Trait Implementations§
impl<'t> Freeze for MethodType<'t>
impl<'t> RefUnwindSafe for MethodType<'t>
impl<'t> Send for MethodType<'t>
impl<'t> Sync for MethodType<'t>
impl<'t> Unpin for MethodType<'t>
impl<'t> UnwindSafe for MethodType<'t>
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