Trait binaryninja::architecture::Register
[−]pub trait Register: Sized + Clone + Copy {
type InfoType: RegisterInfo<RegType = Self>;
fn name(&self) -> Cow<'_, str>;
fn info(&self) -> Self::InfoType;
fn id(&self) -> u32;
}