[][src]Struct coffee::ui::widget::image::Image

pub struct Image { /* fields omitted */ }

A widget that displays an image.

It implements Widget when the associated core::Renderer implements the image::Renderer trait.

Example

use coffee::graphics;
use coffee::ui::Image;

let image_task = graphics::Image::load("resources/ui.png")
	.map(|image| Image::new(&image));

Methods

impl Image[src]

pub fn new(image: &Image) -> Self[src]

Creates a new Image with given image handle.

pub fn clip(self, source: Rectangle<u16>) -> Self[src]

Sets the portion of the Image that we want to draw.

pub fn width(self, width: u32) -> Self[src]

Sets the width of the Image boundaries in pixels.

pub fn height(self, height: u32) -> Self[src]

Sets the height of the Image boundaries in pixels.

Trait Implementations

impl Debug for Image[src]

impl<'a, Message, Renderer> From<Image> for Element<'a, Message, Renderer> where
    Renderer: Renderer
[src]

impl<Message, Renderer> Widget<Message, Renderer> for Image where
    Renderer: Renderer
[src]

Auto Trait Implementations

impl !RefUnwindSafe for Image

impl Send for Image

impl Sync for Image

impl Unpin for Image

impl !UnwindSafe for Image

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

type Output = T

Should always be Self

impl<T> SetParameter for T

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