pub struct POGOInfoEntry<'a> {
pub rva: u32,
pub size: u32,
pub name: &'a [u8],
}Expand description
Represents the IMAGE_DEBUG_POGO_ENTRY structure
Fields§
§rva: u32The relative virtual address (RVA) of the PGO data.
size: u32The size of the PGO data block.
name: &'a [u8]The name of the function or data block associated with the PGO data as a byte slice.
This may contain a null-terminated string that represents the function or block name for which PGO optimization data is provided.
Trait Implementations§
Source§impl<'a> Clone for POGOInfoEntry<'a>
impl<'a> Clone for POGOInfoEntry<'a>
Source§fn clone(&self) -> POGOInfoEntry<'a>
fn clone(&self) -> POGOInfoEntry<'a>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'a> Debug for POGOInfoEntry<'a>
impl<'a> Debug for POGOInfoEntry<'a>
Source§impl<'a> Default for POGOInfoEntry<'a>
impl<'a> Default for POGOInfoEntry<'a>
Source§fn default() -> POGOInfoEntry<'a>
fn default() -> POGOInfoEntry<'a>
Returns the “default value” for a type. Read more
Source§impl<'a> PartialEq for POGOInfoEntry<'a>
impl<'a> PartialEq for POGOInfoEntry<'a>
Source§fn eq(&self, other: &POGOInfoEntry<'a>) -> bool
fn eq(&self, other: &POGOInfoEntry<'a>) -> bool
Tests for
self and other values to be equal, and is used by ==.impl<'a> Copy for POGOInfoEntry<'a>
impl<'a> StructuralPartialEq for POGOInfoEntry<'a>
Auto Trait Implementations§
impl<'a> Freeze for POGOInfoEntry<'a>
impl<'a> RefUnwindSafe for POGOInfoEntry<'a>
impl<'a> Send for POGOInfoEntry<'a>
impl<'a> Sync for POGOInfoEntry<'a>
impl<'a> Unpin for POGOInfoEntry<'a>
impl<'a> UnsafeUnpin for POGOInfoEntry<'a>
impl<'a> UnwindSafe for POGOInfoEntry<'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