[−][src]Struct rendy_resource::SamplerCache
Sampler cache holds handlers to created samplers.
Methods
impl<B> SamplerCache<B> where
B: Backend,
[src]
B: Backend,
pub fn get(
&mut self,
info: SamplerInfo,
create: impl FnOnce() -> Result<Handle<Sampler<B>>, AllocationError>
) -> Result<Handle<Sampler<B>>, AllocationError>
[src]
&mut self,
info: SamplerInfo,
create: impl FnOnce() -> Result<Handle<Sampler<B>>, AllocationError>
) -> Result<Handle<Sampler<B>>, AllocationError>
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]
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,
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> Unpin for SamplerCache<B>
impl<B> Sync for SamplerCache<B> where
<B as Backend>::Sampler: Send + Sync,
<B as Backend>::Sampler: Send + Sync,
impl<B> Send for SamplerCache<B> where
<B as Backend>::Sampler: Send + Sync,
<B as Backend>::Sampler: Send + Sync,
impl<B> UnwindSafe for SamplerCache<B> where
<B as Backend>::Sampler: RefUnwindSafe,
<B as Backend>::Sampler: RefUnwindSafe,
impl<B> RefUnwindSafe for SamplerCache<B> where
<B as Backend>::Sampler: RefUnwindSafe,
<B as Backend>::Sampler: RefUnwindSafe,
Blanket Implementations
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
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>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
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> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Supports<T> for T
[src]
impl<T> SetParameter for T
[src]
fn set<T>(&mut self, value: T) -> <T as Parameter<Self>>::Result where
T: Parameter<Self>,
[src]
T: Parameter<Self>,
Sets value
as a parameter of self
.