pub struct VFuncOffset {
pub vtable_ty: TypeIndex,
pub offset: u32,
}
Fields§
§vtable_ty: TypeIndex
§offset: u32
Trait Implementations§
Source§impl Clone for VFuncOffset
impl Clone for VFuncOffset
Source§fn clone(&self) -> VFuncOffset
fn clone(&self) -> VFuncOffset
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 VFuncOffset
impl Debug for VFuncOffset
Source§impl<'a> Parse<'a> for VFuncOffset
impl<'a> Parse<'a> for VFuncOffset
Source§fn from_parser(p: &mut Parser<'a>) -> Result<Self, ParserError>
fn from_parser(p: &mut Parser<'a>) -> Result<Self, ParserError>
Parses an instance of
Self
from a Parser
.
This allows the caller to detect which bytes were not consumed at the end of the input.Auto Trait Implementations§
impl Freeze for VFuncOffset
impl RefUnwindSafe for VFuncOffset
impl Send for VFuncOffset
impl Sync for VFuncOffset
impl Unpin for VFuncOffset
impl UnwindSafe for VFuncOffset
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