enum BufferStateProvider<'a> {
Direct {
state: BufferUses,
},
Indirect {
state: &'a [BufferUses],
},
}Expand description
Source of Buffer State.
Variants§
Direct
Get a state that was provided directly.
Fields
§
state: BufferUsesIndirect
Get a state from an an array of states.
Fields
§
state: &'a [BufferUses]Implementations§
Source§impl BufferStateProvider<'_>
impl BufferStateProvider<'_>
Sourceunsafe fn get_state(&self, index: usize) -> BufferUses
unsafe fn get_state(&self, index: usize) -> BufferUses
Gets the state from the provider, given a resource ID index.
§Safety
Index must be in bounds for the indirect source iff this is in the indirect state.
Trait Implementations§
Source§impl<'a> Clone for BufferStateProvider<'a>
impl<'a> Clone for BufferStateProvider<'a>
Source§fn clone(&self) -> BufferStateProvider<'a>
fn clone(&self) -> BufferStateProvider<'a>
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<'a> Freeze for BufferStateProvider<'a>
impl<'a> RefUnwindSafe for BufferStateProvider<'a>
impl<'a> Send for BufferStateProvider<'a>
impl<'a> Sync for BufferStateProvider<'a>
impl<'a> Unpin for BufferStateProvider<'a>
impl<'a> UnwindSafe for BufferStateProvider<'a>
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