pub trait DrawContextExt: 'static {
    // Required methods
    fn begin_frame(&self, region: &Region);
    fn end_frame(&self);
    fn display(&self) -> Option<Display>;
    fn surface(&self) -> Option<Surface>;
    fn is_in_frame(&self) -> bool;
}

Required Methods§

source

fn begin_frame(&self, region: &Region)

source

fn end_frame(&self)

source

fn display(&self) -> Option<Display>

source

fn surface(&self) -> Option<Surface>

source

fn is_in_frame(&self) -> bool

Implementors§