pub struct Number<'a> { /* private fields */ }
Expand description
A numeric constant defined within a CodeView type or symbol record.
§References
- “Numeric Leaves” section of PDB specification.
Implementations§
Trait Implementations§
Source§impl<'a> Parse<'a> for Number<'a>
impl<'a> Parse<'a> for Number<'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.impl<'a> Copy for Number<'a>
Auto Trait Implementations§
impl<'a> Freeze for Number<'a>
impl<'a> RefUnwindSafe for Number<'a>
impl<'a> Send for Number<'a>
impl<'a> Sync for Number<'a>
impl<'a> Unpin for Number<'a>
impl<'a> UnwindSafe for Number<'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