[][src]Struct bitbar::Image

pub struct Image {
    pub base64_data: String,
    pub is_template: bool,
}

Used by ContentItem::image and ContentItem::template_image.

Fields

base64_data: String

The base64-encoded image data.

is_template: bool

If this is true, the image will be used with BitBar's templateImage= instead of image=.

Methods

impl Image[src]

pub fn template<T: TryInto<Image>>(img: T) -> Result<Image, T::Error>[src]

Constructs a template image, even if the TryInto implementation would otherwise construct a non-template image.

Trait Implementations

impl Debug for Image[src]

impl<'_, T: ?Sized + AsRef<[u8]>> From<&'_ T> for Image[src]

Converts a PNG file to a non-template image.

impl From<String> for Image[src]

Converts already-encoded base64 data to a non-template image.

impl From<Vec<u8>> for Image[src]

Converts a PNG file to a non-template image.

impl TryFrom<DynamicImage> for Image[src]

type Error = ImageError

The type returned in the event of a conversion error.

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

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, U> TryInto<U> for T where
    U: TryFrom<T>, 

type Err = <U as TryFrom<T>>::Err