#[repr(transparent)]pub struct CommandBufferResetFlags(_);Expand description
Implementations
sourceimpl CommandBufferResetFlags
impl CommandBufferResetFlags
pub const fn empty() -> CommandBufferResetFlags
pub const fn from_raw(x: u32) -> CommandBufferResetFlags
pub const fn as_raw(self) -> u32
pub const fn is_empty(self) -> bool
pub const fn intersects(self, other: CommandBufferResetFlags) -> bool
sourcepub const fn contains(self, other: CommandBufferResetFlags) -> bool
pub const fn contains(self, other: CommandBufferResetFlags) -> bool
Returns whether other is a subset of self
sourceimpl CommandBufferResetFlags
impl CommandBufferResetFlags
sourcepub const RELEASE_RESOURCES: CommandBufferResetFlags = Self(1)
pub const RELEASE_RESOURCES: CommandBufferResetFlags = Self(1)
Release resources owned by the buffer
Trait Implementations
sourceimpl BitAnd<CommandBufferResetFlags> for CommandBufferResetFlags
impl BitAnd<CommandBufferResetFlags> for CommandBufferResetFlags
type Output = CommandBufferResetFlags
type Output = CommandBufferResetFlags
The resulting type after applying the & operator.
sourcefn bitand(self, rhs: CommandBufferResetFlags) -> CommandBufferResetFlags
fn bitand(self, rhs: CommandBufferResetFlags) -> CommandBufferResetFlags
Performs the & operation. Read more
sourceimpl BitAndAssign<CommandBufferResetFlags> for CommandBufferResetFlags
impl BitAndAssign<CommandBufferResetFlags> for CommandBufferResetFlags
sourcefn bitand_assign(&mut self, rhs: CommandBufferResetFlags)
fn bitand_assign(&mut self, rhs: CommandBufferResetFlags)
Performs the &= operation. Read more
sourceimpl BitOr<CommandBufferResetFlags> for CommandBufferResetFlags
impl BitOr<CommandBufferResetFlags> for CommandBufferResetFlags
type Output = CommandBufferResetFlags
type Output = CommandBufferResetFlags
The resulting type after applying the | operator.
sourcefn bitor(self, rhs: CommandBufferResetFlags) -> CommandBufferResetFlags
fn bitor(self, rhs: CommandBufferResetFlags) -> CommandBufferResetFlags
Performs the | operation. Read more
sourceimpl BitOrAssign<CommandBufferResetFlags> for CommandBufferResetFlags
impl BitOrAssign<CommandBufferResetFlags> for CommandBufferResetFlags
sourcefn bitor_assign(&mut self, rhs: CommandBufferResetFlags)
fn bitor_assign(&mut self, rhs: CommandBufferResetFlags)
Performs the |= operation. Read more
sourceimpl BitXor<CommandBufferResetFlags> for CommandBufferResetFlags
impl BitXor<CommandBufferResetFlags> for CommandBufferResetFlags
type Output = CommandBufferResetFlags
type Output = CommandBufferResetFlags
The resulting type after applying the ^ operator.
sourcefn bitxor(self, rhs: CommandBufferResetFlags) -> CommandBufferResetFlags
fn bitxor(self, rhs: CommandBufferResetFlags) -> CommandBufferResetFlags
Performs the ^ operation. Read more
sourceimpl BitXorAssign<CommandBufferResetFlags> for CommandBufferResetFlags
impl BitXorAssign<CommandBufferResetFlags> for CommandBufferResetFlags
sourcefn bitxor_assign(&mut self, rhs: CommandBufferResetFlags)
fn bitxor_assign(&mut self, rhs: CommandBufferResetFlags)
Performs the ^= operation. Read more
sourceimpl Clone for CommandBufferResetFlags
impl Clone for CommandBufferResetFlags
sourcefn clone(&self) -> CommandBufferResetFlags
fn clone(&self) -> CommandBufferResetFlags
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl Debug for CommandBufferResetFlags
impl Debug for CommandBufferResetFlags
sourceimpl Default for CommandBufferResetFlags
impl Default for CommandBufferResetFlags
sourcefn default() -> CommandBufferResetFlags
fn default() -> CommandBufferResetFlags
Returns the “default value” for a type. Read more
sourceimpl Hash for CommandBufferResetFlags
impl Hash for CommandBufferResetFlags
sourceimpl Not for CommandBufferResetFlags
impl Not for CommandBufferResetFlags
type Output = CommandBufferResetFlags
type Output = CommandBufferResetFlags
The resulting type after applying the ! operator.
sourcefn not(self) -> CommandBufferResetFlags
fn not(self) -> CommandBufferResetFlags
Performs the unary ! operation. Read more
sourceimpl Ord for CommandBufferResetFlags
impl Ord for CommandBufferResetFlags
sourceimpl PartialEq<CommandBufferResetFlags> for CommandBufferResetFlags
impl PartialEq<CommandBufferResetFlags> for CommandBufferResetFlags
sourcefn eq(&self, other: &CommandBufferResetFlags) -> bool
fn eq(&self, other: &CommandBufferResetFlags) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcefn ne(&self, other: &CommandBufferResetFlags) -> bool
fn ne(&self, other: &CommandBufferResetFlags) -> bool
This method tests for !=.
sourceimpl PartialOrd<CommandBufferResetFlags> for CommandBufferResetFlags
impl PartialOrd<CommandBufferResetFlags> for CommandBufferResetFlags
sourcefn partial_cmp(&self, other: &CommandBufferResetFlags) -> Option<Ordering>
fn partial_cmp(&self, other: &CommandBufferResetFlags) -> Option<Ordering>
This method returns an ordering between self and other values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self and other) and is used by the <=
operator. Read more
impl Copy for CommandBufferResetFlags
impl Eq for CommandBufferResetFlags
impl StructuralEq for CommandBufferResetFlags
impl StructuralPartialEq for CommandBufferResetFlags
Auto Trait Implementations
impl RefUnwindSafe for CommandBufferResetFlags
impl Send for CommandBufferResetFlags
impl Sync for CommandBufferResetFlags
impl Unpin for CommandBufferResetFlags
impl UnwindSafe for CommandBufferResetFlags
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more