[][src]Struct rendy_resource::SamplerCache

pub struct SamplerCache<B: Backend> { /* fields omitted */ }

Sampler cache holds handlers to created samplers.

Methods

impl<B> SamplerCache<B> where
    B: Backend
[src]

pub fn get(
    &mut self,
    info: SamplerInfo,
    create: impl FnOnce() -> Result<Handle<Sampler<B>>, AllocationError>
) -> Result<Handle<Sampler<B>>, AllocationError>
[src]

Get sampler with specified paramters. Create new one using closure provided.

pub fn get_with_upgradable_lock<R, W, U>(
    read: R,
    upgrade: U,
    info: SamplerInfo,
    create: impl FnOnce() -> Result<Handle<Sampler<B>>, AllocationError>
) -> Result<Handle<Sampler<B>>, AllocationError> where
    R: Deref<Target = Self>,
    W: DerefMut<Target = Self>,
    U: FnOnce(R) -> W, 
[src]

Get sampler with specified paramters. Create new one using closure provided. Does not lock for writing if sampler exists.

Trait Implementations

impl<B: Backend> Default for SamplerCache<B>[src]

impl<B: Debug + Backend> Debug for SamplerCache<B>[src]

Auto Trait Implementations

impl<B> Send for SamplerCache<B> where
    <B as Backend>::Sampler: Send + Sync

impl<B> Sync for SamplerCache<B> where
    <B as Backend>::Sampler: Send + Sync

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Supports<T> for T[src]

impl<T> Erased for T