Trait binaryninja::architecture::Register
source · pub trait Register: Sized + Clone + Copy + Hash + Eq {
type InfoType: RegisterInfo<RegType = Self>;
// Required methods
fn name(&self) -> Cow<'_, str>;
fn info(&self) -> Self::InfoType;
fn id(&self) -> u32;
}
Required Associated Types§
type InfoType: RegisterInfo<RegType = Self>
Required Methods§
Object Safety§
This trait is not object safe.