pub struct ScInstr<'a> {
pub info: &'a ScInstrInfo,
pub dst: i32,
pub src: i32,
pub mod_v: u8,
pub imm32: u32,
pub op_group: ScOpcode,
pub op_group_par: i32,
pub can_reuse: bool,
pub group_par_is_source: bool,
}Fields§
§info: &'a ScInstrInfo§dst: i32§src: i32§mod_v: u8§imm32: u32§op_group: ScOpcode§op_group_par: i32§can_reuse: bool§group_par_is_source: boolImplementations§
Source§impl ScInstr<'_>
impl ScInstr<'_>
pub fn create_for_slot<'a>( generator: &mut Blake2Generator, slot_size: u32, fetch_type: u32, is_last: bool, ) -> ScInstr<'a>
Trait Implementations§
impl<'a> Copy for ScInstr<'a>
Auto Trait Implementations§
impl<'a> Freeze for ScInstr<'a>
impl<'a> RefUnwindSafe for ScInstr<'a>
impl<'a> Send for ScInstr<'a>
impl<'a> Sync for ScInstr<'a>
impl<'a> Unpin for ScInstr<'a>
impl<'a> UnsafeUnpin for ScInstr<'a>
impl<'a> UnwindSafe for ScInstr<'a>
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