pub struct PCode {
pub address: u64,
pub opcode: Opcode,
pub vars: Vec<VarnodeData>,
pub outvar: Option<VarnodeData>,
}Fields§
§address: u64§opcode: Opcode§vars: Vec<VarnodeData>§outvar: Option<VarnodeData>Trait Implementations§
Auto Trait Implementations§
impl Freeze for PCode
impl RefUnwindSafe for PCode
impl Send for PCode
impl Sync for PCode
impl Unpin for PCode
impl UnwindSafe for PCode
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