[][src]Struct gfx::handle::Sampler

pub struct Sampler<R>(_, _)
where
    R: Resources
;

Sampler Handle

Implementations

impl<R> Sampler<R> where
    R: Resources
[src]

pub fn get_info(&self) -> &SamplerInfo[src]

Get sampler info

Trait Implementations

impl<R> Clone for Sampler<R> where
    R: Resources + Clone,
    <R as Resources>::Sampler: Clone
[src]

impl<R> Debug for Sampler<R> where
    R: Resources + Debug,
    <R as Resources>::Sampler: Debug
[src]

impl<R> Eq for Sampler<R> where
    R: Resources + Eq,
    <R as Resources>::Sampler: Eq
[src]

impl<R> Hash for Sampler<R> where
    R: Resources + Hash,
    <R as Resources>::Sampler: Hash
[src]

impl<R> PartialEq<Sampler<R>> for Sampler<R> where
    R: Resources + PartialEq<R>,
    <R as Resources>::Sampler: PartialEq<<R as Resources>::Sampler>, 
[src]

impl<R> StructuralEq for Sampler<R> where
    R: Resources
[src]

impl<R> StructuralPartialEq for Sampler<R> where
    R: Resources
[src]

Auto Trait Implementations

impl<R> RefUnwindSafe for Sampler<R> where
    <R as Resources>::Sampler: RefUnwindSafe

impl<R> Send for Sampler<R> where
    <R as Resources>::Sampler: Send + Sync

impl<R> Sync for Sampler<R> where
    <R as Resources>::Sampler: Send + Sync

impl<R> Unpin for Sampler<R>

impl<R> UnwindSafe for Sampler<R> where
    <R as Resources>::Sampler: RefUnwindSafe

Blanket Implementations

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

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

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

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

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.