[][src]Enum gtk::PageSet

#[non_exhaustive]pub enum PageSet {
    All,
    Even,
    Odd,
    // some variants omitted
}

See also gtk_print_job_set_page_set.

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.
All

All pages.

Even

Even pages.

Odd

Odd pages.

Trait Implementations

impl Clone for PageSet[src]

impl Copy for PageSet[src]

impl Debug for PageSet[src]

impl Display for PageSet[src]

impl Eq for PageSet[src]

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

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

impl Hash for PageSet[src]

impl Ord for PageSet[src]

impl PartialEq<PageSet> for PageSet[src]

impl PartialOrd<PageSet> for PageSet[src]

impl SetValue for PageSet[src]

impl StaticType for PageSet[src]

impl StructuralEq for PageSet[src]

impl StructuralPartialEq for PageSet[src]

Auto Trait Implementations

impl RefUnwindSafe for PageSet

impl Send for PageSet

impl Sync for PageSet

impl Unpin for PageSet

impl UnwindSafe for PageSet

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.