pub struct WarpDirectLimits {
pub plane_min: u32,
pub plane_max: u32,
pub plane_ops: bool,
pub max_threads: u32,
pub max_block_x: u32,
pub max_grid_x: u32,
pub shared_bytes: usize,
}Expand description
Capability snapshot supplied by a real runtime, not inferred from its name.
Fields§
§plane_min: u32§plane_max: u32§plane_ops: bool§max_threads: u32§max_block_x: u32§max_grid_x: u32Trait Implementations§
Source§impl Clone for WarpDirectLimits
impl Clone for WarpDirectLimits
Source§fn clone(&self) -> WarpDirectLimits
fn clone(&self) -> WarpDirectLimits
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for WarpDirectLimits
Auto Trait Implementations§
impl Freeze for WarpDirectLimits
impl RefUnwindSafe for WarpDirectLimits
impl Send for WarpDirectLimits
impl Sync for WarpDirectLimits
impl Unpin for WarpDirectLimits
impl UnsafeUnpin for WarpDirectLimits
impl UnwindSafe for WarpDirectLimits
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