pub struct LoadedValueBug {
pub load_location: SourceLocation,
pub store_location: SourceLocation,
pub register: String,
pub severity: Severity,
pub mitigation: String,
}Expand description
Bug: Store using value derived from ld.shared
Fields§
§load_location: SourceLocationLoad location
store_location: SourceLocationStore location
register: StringRegister containing loaded value
severity: SeveritySeverity
mitigation: StringMitigation advice
Trait Implementations§
Source§impl Clone for LoadedValueBug
impl Clone for LoadedValueBug
Source§fn clone(&self) -> LoadedValueBug
fn clone(&self) -> LoadedValueBug
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 moreAuto Trait Implementations§
impl Freeze for LoadedValueBug
impl RefUnwindSafe for LoadedValueBug
impl Send for LoadedValueBug
impl Sync for LoadedValueBug
impl Unpin for LoadedValueBug
impl UnsafeUnpin for LoadedValueBug
impl UnwindSafe for LoadedValueBug
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