pub struct AnalysisMacroProfile {
pub name: String,
pub rvas: Vec<u64>,
}
Expand description
Grouping of functions under a named macro profile.
Fields§
§name: String
Name of the macro profile.
rvas: Vec<u64>
List of function RVAs in this macro.
Trait Implementations§
Source§impl Clone for AnalysisMacroProfile
impl Clone for AnalysisMacroProfile
Source§fn clone(&self) -> AnalysisMacroProfile
fn clone(&self) -> AnalysisMacroProfile
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 Debug for AnalysisMacroProfile
impl Debug for AnalysisMacroProfile
Source§impl<'de> Deserialize<'de> for AnalysisMacroProfile
impl<'de> Deserialize<'de> for AnalysisMacroProfile
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for AnalysisMacroProfile
impl RefUnwindSafe for AnalysisMacroProfile
impl Send for AnalysisMacroProfile
impl Sync for AnalysisMacroProfile
impl Unpin for AnalysisMacroProfile
impl UnwindSafe for AnalysisMacroProfile
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