struct BindGroupStateChange<BG = BindGroupId> {
last_states: [StateChange<Option<BG>>; 8],
}Fields§
§last_states: [StateChange<Option<BG>>; 8]Implementations§
Source§impl<BG: Clone + PartialEq_> BindGroupStateChange<BG>
impl<BG: Clone + PartialEq_> BindGroupStateChange<BG>
Trait Implementations§
Source§impl<BG: Debug> Debug for BindGroupStateChange<BG>
impl<BG: Debug> Debug for BindGroupStateChange<BG>
Source§impl<BG: Clone + PartialEq_> Default for BindGroupStateChange<BG>
impl<BG: Clone + PartialEq_> Default for BindGroupStateChange<BG>
Auto Trait Implementations§
impl<BG> Freeze for BindGroupStateChange<BG>where
BG: Freeze,
impl<BG> RefUnwindSafe for BindGroupStateChange<BG>where
BG: RefUnwindSafe,
impl<BG> Send for BindGroupStateChange<BG>where
BG: Send,
impl<BG> Sync for BindGroupStateChange<BG>where
BG: Sync,
impl<BG> Unpin for BindGroupStateChange<BG>where
BG: Unpin,
impl<BG> UnwindSafe for BindGroupStateChange<BG>where
BG: UnwindSafe,
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> 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