[][src]Trait web_glitz::image::texture_2d_array::LevelsIndex

pub trait LevelsIndex<'a, F> {
    type Output;
    fn get(self, levels: &'a Levels<F>) -> Option<Self::Output>;
unsafe fn get_unchecked(self, levels: &'a Levels<F>) -> Self::Output; }

A helper trait for indexing Levels.

See Levels::get and Levels::get_unchecked.

Associated Types

type Output

The output type returned by the indexing operations.

Loading content...

Required methods

fn get(self, levels: &'a Levels<F>) -> Option<Self::Output>

Returns the output for this operation if in bounds, or None otherwise.

unsafe fn get_unchecked(self, levels: &'a Levels<F>) -> Self::Output

Returns the output for this operation, without performing any bounds checking.

Loading content...

Implementations on Foreign Types

impl<'a, F> LevelsIndex<'a, F> for usize where
    F: 'a, 
[src]

type Output = Level<'a, F>

impl<'a, F> LevelsIndex<'a, F> for RangeFull where
    F: 'a, 
[src]

type Output = Levels<'a, F>

impl<'a, F> LevelsIndex<'a, F> for Range<usize> where
    F: 'a, 
[src]

type Output = Levels<'a, F>

impl<'a, F> LevelsIndex<'a, F> for RangeInclusive<usize> where
    F: 'a, 
[src]

type Output = Levels<'a, F>

impl<'a, F> LevelsIndex<'a, F> for RangeFrom<usize> where
    F: 'a, 
[src]

type Output = Levels<'a, F>

impl<'a, F> LevelsIndex<'a, F> for RangeTo<usize> where
    F: 'a, 
[src]

type Output = Levels<'a, F>

impl<'a, F> LevelsIndex<'a, F> for RangeToInclusive<usize> where
    F: 'a, 
[src]

type Output = Levels<'a, F>

Loading content...

Implementors

Loading content...