Trait gfx::extra::canvas::IntoCanvas
[−]
[src]
pub trait IntoCanvas<W, D: Device, F> { fn into_canvas(self) -> Canvas<W, D, F>; }
Something that can be transformed into Canvas
.
Required Methods
fn into_canvas(self) -> Canvas<W, D, F>
Transform into Canvas
.
Implementors
impl<W, D: Device, F: Factory<D>> IntoCanvas<W, D, F> for (W, D, F)