pub struct Proc<'a> {
pub fixed: &'a ProcFixed,
pub name: &'a BStr,
}
Expand description
Used for S_LPROC32
and S_GPROC32
.
These records are found in Module Symbol Streams. They are very important; they describe the
beginning of a function (procedure), and they contain other symbols recursively (are a
“symbol scope”). The end of the sequence is terminated with an S_END
symbol.
This is equivalent to the PROCSYM32
type defined in cvinfo.h
. This symbol begins with a
BLOCKSYM
header
§References
- See
PROCSYM32
incvinfo.h
Fields§
§fixed: &'a ProcFixed
§name: &'a BStr
Trait Implementations§
Source§impl<'a> Parse<'a> for Proc<'a>
impl<'a> Parse<'a> for Proc<'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 Proc<'a>
impl<'a> RefUnwindSafe for Proc<'a>
impl<'a> Send for Proc<'a>
impl<'a> Sync for Proc<'a>
impl<'a> Unpin for Proc<'a>
impl<'a> UnwindSafe for Proc<'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