[][src]Enum gtk::ImageType

#[non_exhaustive]pub enum ImageType {
    Empty,
    Pixbuf,
    Stock,
    IconSet,
    Animation,
    IconName,
    Gicon,
    Surface,
    // some variants omitted
}

Describes the image data representation used by a Image. If you want to get the image from the widget, you can only get the currently-stored representation. e.g. if the ImageExt::get_storage_type returns ImageType::Pixbuf, then you can call ImageExt::get_pixbuf but not Image::get_stock. For empty images, you can request any storage type (call any of the "get" functions), but they will all return None values.

Variants (Non-exhaustive)

Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Empty

there is no image displayed by the widget

Pixbuf

the widget contains a gdk_pixbuf::Pixbuf

Stock

the widget contains a [stock item name][gtkstock]

IconSet

the widget contains a IconSet

Animation

the widget contains a gdk_pixbuf::PixbufAnimation

IconName

the widget contains a named icon. This image type was added in GTK+ 2.6

Gicon

the widget contains a gio::Icon. This image type was added in GTK+ 2.14

Surface

the widget contains a cairo::Surface. This image type was added in GTK+ 3.10

Trait Implementations

impl Clone for ImageType[src]

impl Copy for ImageType[src]

impl Debug for ImageType[src]

impl Display for ImageType[src]

impl Eq for ImageType[src]

impl<'a> FromValue<'a> for ImageType[src]

impl<'a> FromValueOptional<'a> for ImageType[src]

impl Hash for ImageType[src]

impl Ord for ImageType[src]

impl PartialEq<ImageType> for ImageType[src]

impl PartialOrd<ImageType> for ImageType[src]

impl SetValue for ImageType[src]

impl StaticType for ImageType[src]

impl StructuralEq for ImageType[src]

impl StructuralPartialEq for ImageType[src]

Auto Trait Implementations

impl RefUnwindSafe for ImageType

impl Send for ImageType

impl Sync for ImageType

impl Unpin for ImageType

impl UnwindSafe for ImageType

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToSendValue for T where
    T: ToValue + SetValue + Send + ?Sized

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T> ToValue for T where
    T: SetValue + ?Sized

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.