Struct kas_wgpu::draw::DrawWindow [−][src]
pub struct DrawWindow<CW: CustomWindow> { /* fields omitted */ }Expand description
Per-window pipeline data
Trait Implementations
Auto Trait Implementations
impl<CW> !RefUnwindSafe for DrawWindow<CW>
impl<CW> Send for DrawWindow<CW> where
CW: Send,
impl<CW> Sync for DrawWindow<CW> where
CW: Sync,
impl<CW> Unpin for DrawWindow<CW> where
CW: Unpin,
impl<CW> !UnwindSafe for DrawWindow<CW>
Blanket Implementations
Mutably borrows from an owned value. Read more
pub fn cast_trunc(self) -> T
pub fn cast_trunc(self) -> T
Cast to integer, truncating Read more
pub fn cast_nearest(self) -> T
pub fn cast_nearest(self) -> T
Cast to the nearest integer Read more
pub fn cast_floor(self) -> T
pub fn cast_floor(self) -> T
Cast the floor to an integer Read more
pub fn try_cast_trunc(self) -> Result<T, Error>
pub fn try_cast_trunc(self) -> Result<T, Error>
Try converting to integer with truncation Read more
pub fn try_cast_nearest(self) -> Result<T, Error>
pub fn try_cast_nearest(self) -> Result<T, Error>
Try converting to the nearest integer Read more
pub fn try_cast_floor(self) -> Result<T, Error>
pub fn try_cast_floor(self) -> Result<T, Error>
Try converting the floor to an integer Read more
pub fn try_cast_ceil(self) -> Result<T, Error>
pub fn try_cast_ceil(self) -> Result<T, Error>
Try convert the ceiling to an integer Read more