struct StencilOps {
pass: u32,
fail: u32,
depth_fail: u32,
}Available on
gles only.Fields§
§pass: u32§fail: u32§depth_fail: u32Trait Implementations§
Source§impl Clone for StencilOps
impl Clone for StencilOps
Source§fn clone(&self) -> StencilOps
fn clone(&self) -> StencilOps
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 moreSource§impl Debug for StencilOps
impl Debug for StencilOps
Source§impl Default for StencilOps
impl Default for StencilOps
Source§impl PartialEq for StencilOps
impl PartialEq for StencilOps
impl StructuralPartialEq for StencilOps
Auto Trait Implementations§
impl Freeze for StencilOps
impl RefUnwindSafe for StencilOps
impl Send for StencilOps
impl Sync for StencilOps
impl Unpin for StencilOps
impl UnwindSafe for StencilOps
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more