pub struct BytecodeIssue {
pub severity: Severity,
pub issue_type: IssueType,
pub pc: usize,
pub description: String,
}Expand description
Issue found in bytecode.
Fields§
§severity: SeverityIssue severity.
issue_type: IssueTypeIssue type.
pc: usizeProgram counter where issue occurs.
description: StringHuman-readable description.
Trait Implementations§
Source§impl Clone for BytecodeIssue
impl Clone for BytecodeIssue
Source§fn clone(&self) -> BytecodeIssue
fn clone(&self) -> BytecodeIssue
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 Debug for BytecodeIssue
impl Debug for BytecodeIssue
Source§impl<'de> Deserialize<'de> for BytecodeIssue
impl<'de> Deserialize<'de> for BytecodeIssue
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 BytecodeIssue
impl RefUnwindSafe for BytecodeIssue
impl Send for BytecodeIssue
impl Sync for BytecodeIssue
impl Unpin for BytecodeIssue
impl UnsafeUnpin for BytecodeIssue
impl UnwindSafe for BytecodeIssue
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