pub struct ResidentPlan {
pub universe_size: u32,
pub domain_size: u32,
pub max_iters: u32,
pub num_vars: usize,
/* private fields */
}Expand description
Compiled, device-uploadable plan for the resident engine.
Fields§
§universe_size: u32§domain_size: u32§max_iters: u32§num_vars: usizeTrait Implementations§
Source§impl Clone for ResidentPlan
impl Clone for ResidentPlan
Source§fn clone(&self) -> ResidentPlan
fn clone(&self) -> ResidentPlan
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for ResidentPlan
impl RefUnwindSafe for ResidentPlan
impl Send for ResidentPlan
impl Sync for ResidentPlan
impl Unpin for ResidentPlan
impl UnsafeUnpin for ResidentPlan
impl UnwindSafe for ResidentPlan
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