pub struct MethodListData<'a> {
pub bytes: &'a [u8],
}
Expand description
Payload for LF_METHODLIST
Fields§
§bytes: &'a [u8]
Contains a repeated sequence of:
struct {
attr: u16,
pad0: u16,
ty: TypeIndex,
vtab_offset: u32, // optional, present only if attr indicates it starts a vtable slot
}
Trait Implementations§
Source§impl<'a> Clone for MethodListData<'a>
impl<'a> Clone for MethodListData<'a>
Source§fn clone(&self) -> MethodListData<'a>
fn clone(&self) -> MethodListData<'a>
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<'a> Freeze for MethodListData<'a>
impl<'a> RefUnwindSafe for MethodListData<'a>
impl<'a> Send for MethodListData<'a>
impl<'a> Sync for MethodListData<'a>
impl<'a> Unpin for MethodListData<'a>
impl<'a> UnwindSafe for MethodListData<'a>
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