Struct paralegal_spdg::InstructionInfo
source · pub struct InstructionInfo {
pub kind: InstructionKind,
pub span: Span,
pub description: Identifier,
}
Expand description
Information about an instruction represented in the PDG
Fields§
§kind: InstructionKind
Classification of the instruction
span: Span
The source code span
description: Identifier
Textual rendering of the MIR
Trait Implementations§
source§impl Clone for InstructionInfo
impl Clone for InstructionInfo
source§fn clone(&self) -> InstructionInfo
fn clone(&self) -> InstructionInfo
Returns a copy 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 InstructionInfo
impl Debug for InstructionInfo
source§impl<'de> Deserialize<'de> for InstructionInfo
impl<'de> Deserialize<'de> for InstructionInfo
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 RefUnwindSafe for InstructionInfo
impl Send for InstructionInfo
impl Sync for InstructionInfo
impl Unpin for InstructionInfo
impl UnwindSafe for InstructionInfo
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