pub struct HlslBufferAssignments {
pub ubo: Option<HlslBufferAssignment>,
pub push: Option<HlslBufferAssignment>,
}
Expand description
Buffer assignment information
Fields§
§ubo: Option<HlslBufferAssignment>
Buffer assignment information for UBO
push: Option<HlslBufferAssignment>
Buffer assignment information for Push
Implementations§
Source§impl HlslBufferAssignments
impl HlslBufferAssignments
pub fn contains_uniform(&self, uniform_name: &str, mangled_name: &str) -> bool
Trait Implementations§
Source§impl Clone for HlslBufferAssignments
impl Clone for HlslBufferAssignments
Source§fn clone(&self) -> HlslBufferAssignments
fn clone(&self) -> HlslBufferAssignments
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 HlslBufferAssignments
impl Debug for HlslBufferAssignments
Source§impl Default for HlslBufferAssignments
impl Default for HlslBufferAssignments
Source§fn default() -> HlslBufferAssignments
fn default() -> HlslBufferAssignments
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for HlslBufferAssignments
impl RefUnwindSafe for HlslBufferAssignments
impl Send for HlslBufferAssignments
impl Sync for HlslBufferAssignments
impl Unpin for HlslBufferAssignments
impl UnwindSafe for HlslBufferAssignments
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