Trait dunge::texture::Make

source ·
pub trait Make: Sealed {
    type Out;

    // Required method
    fn make(self, maker: Maker<'_>) -> Self::Out;
}

Required Associated Types§

Required Methods§

source

fn make(self, maker: Maker<'_>) -> Self::Out

Implementors§

source§

impl Make for TextureData<'_>

source§

impl<M> Make for Bind<M>
where M: Make,

§

type Out = Bind<<M as Make>::Out>

source§

impl<M> Make for Copy<M>
where M: Make,

§

type Out = Copy<<M as Make>::Out>

source§

impl<M> Make for Draw<M>
where M: Make,

§

type Out = Draw<<M as Make>::Out>