pub struct OneMethod<'a> {
pub attr: u16,
pub ty: TypeIndex,
pub vbaseoff: u32,
pub name: &'a BStr,
}
Fields§
§attr: u16
§ty: TypeIndex
§vbaseoff: u32
§name: &'a BStr
Trait Implementations§
Source§impl<'a> Parse<'a> for OneMethod<'a>
impl<'a> Parse<'a> for OneMethod<'a>
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<'a> Freeze for OneMethod<'a>
impl<'a> RefUnwindSafe for OneMethod<'a>
impl<'a> Send for OneMethod<'a>
impl<'a> Sync for OneMethod<'a>
impl<'a> Unpin for OneMethod<'a>
impl<'a> UnwindSafe for OneMethod<'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