[][src]Struct solstice_2d::GraphicsLock

pub struct GraphicsLock<'a, 'b> { /* fields omitted */ }

Methods from Deref<Target = DrawList<'b>>

pub fn clear<C: Into<Color>>(&mut self, color: C)[src]

pub fn print<T>(
    &mut self,
    text: T,
    font_id: FontId,
    scale: f32,
    bounds: Rectangle
) where
    T: Into<Cow<'a, str>>, 
[src]

pub fn line_2d<G: Iterator<Item = LineVertex> + Clone + Debug + 'static>(
    &mut self,
    points: G
)
[src]

pub fn line_3d<G: Iterator<Item = LineVertex> + Clone + Debug + 'static>(
    &mut self,
    points: G
)
[src]

pub fn set_color<C: Into<Color>>(&mut self, color: C)[src]

pub fn set_transform<T: Into<Transform3D>>(&mut self, transform: T)[src]

pub fn set_camera<T: Into<Transform3D>>(&mut self, camera: T)[src]

pub fn set_projection_mode(&mut self, projection_mode: Option<Projection>)[src]

pub fn set_canvas(&mut self, target: Option<Canvas>)[src]

pub fn set_shader(&mut self, shader: Option<Shader>)[src]

Trait Implementations

impl<'b, '_> Deref for GraphicsLock<'_, 'b>[src]

type Target = DrawList<'b>

The resulting type after dereferencing.

impl<'_, '_> DerefMut for GraphicsLock<'_, '_>[src]

impl<'_, '_> Drop for GraphicsLock<'_, '_>[src]

Auto Trait Implementations

impl<'a, 'b> !RefUnwindSafe for GraphicsLock<'a, 'b>[src]

impl<'a, 'b> !Send for GraphicsLock<'a, 'b>[src]

impl<'a, 'b> !Sync for GraphicsLock<'a, 'b>[src]

impl<'a, 'b> Unpin for GraphicsLock<'a, 'b>[src]

impl<'a, 'b> !UnwindSafe for GraphicsLock<'a, 'b>[src]

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> Pointable for T

type Init = T

The type for initializers.

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<SS, SP> SupersetOf<SS> for SP where
    SS: SubsetOf<SP>, 

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,