pub struct EtaJob {
pub id: u64,
pub hash: u64,
pub prio: u32,
}Expand description
Represents a pending eta-reduction job.
Fields§
§id: u64Unique job ID.
hash: u64Expression hash to reduce.
prio: u32Priority (higher = process first).
Implementations§
Auto Trait Implementations§
impl Freeze for EtaJob
impl RefUnwindSafe for EtaJob
impl Send for EtaJob
impl Sync for EtaJob
impl Unpin for EtaJob
impl UnsafeUnpin for EtaJob
impl UnwindSafe for EtaJob
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