[−][src]Struct rendy::descriptor::DescriptorRanges
Number of descriptors per type.
Implementations
impl DescriptorRanges[src]
pub fn zero() -> DescriptorRanges[src]
Create new instance without descriptors.
pub fn add_binding(&mut self, binding: DescriptorSetLayoutBinding)[src]
Add a single layout binding.
Useful when created with DescriptorRanges::zero().
pub fn iter(&self) -> DescriptorRangesIter<'_>ⓘNotable traits for DescriptorRangesIter<'a>
impl<'a> Iterator for DescriptorRangesIter<'a> type Item = DescriptorRangeDesc;[src]
Notable traits for DescriptorRangesIter<'a>
impl<'a> Iterator for DescriptorRangesIter<'a> type Item = DescriptorRangeDesc;Iterate through ranges yelding descriptor types and their amount.
pub fn counts(&self) -> &[u32][src]
Read as slice.
pub fn counts_mut(&mut self) -> &mut [u32][src]
Read or write as slice.
pub fn from_bindings(
bindings: &[DescriptorSetLayoutBinding]
) -> DescriptorRanges[src]
bindings: &[DescriptorSetLayoutBinding]
) -> DescriptorRanges
Calculate ranges from bindings.
pub fn from_binding_iter<I>(bindings: I) -> DescriptorRanges where
I: Iterator<Item = DescriptorSetLayoutBinding>, [src]
I: Iterator<Item = DescriptorSetLayoutBinding>,
Calculate ranges from bindings, specified with an iterator.
Trait Implementations
impl Add<DescriptorRanges> for DescriptorRanges[src]
type Output = DescriptorRanges
The resulting type after applying the + operator.
fn add(self, rhs: DescriptorRanges) -> DescriptorRanges[src]
impl AddAssign<DescriptorRanges> for DescriptorRanges[src]
fn add_assign(&mut self, rhs: DescriptorRanges)[src]
impl Clone for DescriptorRanges[src]
fn clone(&self) -> DescriptorRanges[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Copy for DescriptorRanges[src]
impl Debug for DescriptorRanges[src]
impl Eq for DescriptorRanges[src]
impl Hash for DescriptorRanges[src]
fn hash<__H>(&self, state: &mut __H) where
__H: Hasher, [src]
__H: Hasher,
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher, 1.3.0[src]
H: Hasher,
impl<'a> IntoIterator for &'a DescriptorRanges[src]
type Item = DescriptorRangeDesc
The type of the elements being iterated over.
type IntoIter = DescriptorRangesIter<'a>
Which kind of iterator are we turning this into?
fn into_iter(self) -> DescriptorRangesIter<'a>ⓘNotable traits for DescriptorRangesIter<'a>
impl<'a> Iterator for DescriptorRangesIter<'a> type Item = DescriptorRangeDesc;[src]
Notable traits for DescriptorRangesIter<'a>
impl<'a> Iterator for DescriptorRangesIter<'a> type Item = DescriptorRangeDesc;impl Mul<u32> for DescriptorRanges[src]
type Output = DescriptorRanges
The resulting type after applying the * operator.
fn mul(self, rhs: u32) -> DescriptorRanges[src]
impl MulAssign<u32> for DescriptorRanges[src]
fn mul_assign(&mut self, rhs: u32)[src]
impl PartialEq<DescriptorRanges> for DescriptorRanges[src]
fn eq(&self, other: &DescriptorRanges) -> bool[src]
fn ne(&self, other: &DescriptorRanges) -> bool[src]
impl PartialOrd<DescriptorRanges> for DescriptorRanges[src]
fn partial_cmp(&self, other: &DescriptorRanges) -> Option<Ordering>[src]
#[must_use]fn lt(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]fn le(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]fn gt(&self, other: &Rhs) -> bool1.0.0[src]
#[must_use]fn ge(&self, other: &Rhs) -> bool1.0.0[src]
impl StructuralEq for DescriptorRanges[src]
impl StructuralPartialEq for DescriptorRanges[src]
impl Sub<DescriptorRanges> for DescriptorRanges[src]
type Output = DescriptorRanges
The resulting type after applying the - operator.
fn sub(self, rhs: DescriptorRanges) -> DescriptorRanges[src]
impl SubAssign<DescriptorRanges> for DescriptorRanges[src]
fn sub_assign(&mut self, rhs: DescriptorRanges)[src]
Auto Trait Implementations
impl RefUnwindSafe for DescriptorRanges
impl Send for DescriptorRanges
impl Sync for DescriptorRanges
impl Unpin for DescriptorRanges
impl UnwindSafe for DescriptorRanges
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,