pub struct HighPcodeBlock {
pub id: String,
pub index: i32,
pub block_type: String,
pub range: Option<AddressRange>,
pub op_sequence_numbers: Vec<String>,
}Expand description
High P-code basic block.
Fields§
§id: String§index: i32§block_type: String§range: Option<AddressRange>§op_sequence_numbers: Vec<String>Trait Implementations§
Source§impl Clone for HighPcodeBlock
impl Clone for HighPcodeBlock
Source§fn clone(&self) -> HighPcodeBlock
fn clone(&self) -> HighPcodeBlock
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 HighPcodeBlock
impl Debug for HighPcodeBlock
Source§impl<'de> Deserialize<'de> for HighPcodeBlock
impl<'de> Deserialize<'de> for HighPcodeBlock
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
Source§impl PartialEq for HighPcodeBlock
impl PartialEq for HighPcodeBlock
Source§fn eq(&self, other: &HighPcodeBlock) -> bool
fn eq(&self, other: &HighPcodeBlock) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for HighPcodeBlock
impl Serialize for HighPcodeBlock
impl Eq for HighPcodeBlock
impl StructuralPartialEq for HighPcodeBlock
Auto Trait Implementations§
impl Freeze for HighPcodeBlock
impl RefUnwindSafe for HighPcodeBlock
impl Send for HighPcodeBlock
impl Sync for HighPcodeBlock
impl Unpin for HighPcodeBlock
impl UnsafeUnpin for HighPcodeBlock
impl UnwindSafe for HighPcodeBlock
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