pub struct BlockSymbol<'t> {
pub parent: SymbolIndex,
pub end: SymbolIndex,
pub len: u32,
pub offset: PdbInternalSectionOffset,
pub name: RawString<'t>,
}Expand description
A block symbol.
Symbol kind S_BLOCK32, or S_BLOCK32_ST.
Fields§
§parent: SymbolIndexThe parent scope that this block is nested in.
end: SymbolIndexThe end symbol of this block.
len: u32The length of the block.
offset: PdbInternalSectionOffsetCode offset of the start of this label.
name: RawString<'t>The block name.
Trait Implementations§
Source§impl<'t> Clone for BlockSymbol<'t>
impl<'t> Clone for BlockSymbol<'t>
Source§fn clone(&self) -> BlockSymbol<'t>
fn clone(&self) -> BlockSymbol<'t>
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<'t> Debug for BlockSymbol<'t>
impl<'t> Debug for BlockSymbol<'t>
Source§impl<'t> PartialEq for BlockSymbol<'t>
impl<'t> PartialEq for BlockSymbol<'t>
Source§impl<'t> TryFromCtx<'t, u16> for BlockSymbol<'t>
impl<'t> TryFromCtx<'t, u16> for BlockSymbol<'t>
impl<'t> Copy for BlockSymbol<'t>
impl<'t> Eq for BlockSymbol<'t>
impl<'t> StructuralPartialEq for BlockSymbol<'t>
Auto Trait Implementations§
impl<'t> Freeze for BlockSymbol<'t>
impl<'t> RefUnwindSafe for BlockSymbol<'t>
impl<'t> Send for BlockSymbol<'t>
impl<'t> Sync for BlockSymbol<'t>
impl<'t> Unpin for BlockSymbol<'t>
impl<'t> UnwindSafe for BlockSymbol<'t>
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