[][src]Struct neutrino::utils::pixmap::Pixmap

pub struct Pixmap { /* fields omitted */ }

A model for an image

As a webview does not have access to the local file system, the given images are encoded into text (Base64) to be displayed.

Fields

data: String
extension: String

Methods

impl Pixmap[src]

pub fn new(data: &str, extension: &str) -> Self[src]

Create a Pixmap from text data

pub fn from_path(path: &str) -> Self[src]

Create a Pixmap from a file path

pub fn from_icon(icon: Box<dyn Icon>) -> Self[src]

Create a Pixmap from an Icon

pub fn data(&self) -> &str[src]

Get the data

pub fn extension(&self) -> &str[src]

Get the extension

Auto Trait Implementations

impl Send for Pixmap

impl Unpin for Pixmap

impl Sync for Pixmap

impl UnwindSafe for Pixmap

impl RefUnwindSafe for Pixmap

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

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<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

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