pub trait IntoBinding<'a> {
    // Required method
    fn into_binding(self) -> BindingResource<'a>;
}

Required Methods§

Implementations on Foreign Types§

source§

impl<'a> IntoBinding<'a> for &'a [&'a TextureView]

Implementors§

source§

impl<'a> IntoBinding<'a> for &'a Sampler

source§

impl<'a> IntoBinding<'a> for &'a TextureView

source§

impl<'a> IntoBinding<'a> for BindingResource<'a>

source§

impl<'a> IntoBinding<'a> for BufferBinding<'a>

source§

impl<'a, T> IntoBinding<'a> for &'a DynamicUniformBuffer<T>
where T: ShaderType + WriteInto,

source§

impl<'a, T> IntoBinding<'a> for &'a UniformBuffer<T>
where T: ShaderType + WriteInto,