Struct show_image::WindowInner[][src]

pub struct WindowInner { /* fields omitted */ }

Inner window doing the real work in the background thread.

Implementations

impl WindowInner[src]

pub fn image(&self) -> Option<&Image>[src]

pub fn size(&self) -> [u32; 2][src]

Get the size of the window.

pub fn image_area(&self) -> Option<Rectangle>[src]

Get the rectangle with the visible image.

pub fn set_image(
    &mut self,
    name: String,
    image: impl ImageData
) -> Result<(), String>
[src]

Set the displayed image of the window.

pub fn set_image_with_overlays(
    &mut self,
    name: String,
    image: impl ImageData,
    overlays: Vec<impl ImageData>
) -> Result<(), String>
[src]

Set the displayed image and the overlays of the window.

pub fn set_image_from_data(
    &mut self,
    name: String,
    info: ImageInfo,
    mut data: Box<[u8]>
) -> Result<(), String>
[src]

Set the displayed image.

pub fn add_overlay(&mut self, image: impl ImageData) -> Result<(), String>[src]

Add an overlay to be drawn over the displayed image.

pub fn clear_overlays(&mut self)[src]

Auto Trait Implementations

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, 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>,