[][src]Enum gtk::Justification

#[non_exhaustive]pub enum Justification {
    Left,
    Right,
    Center,
    Fill,
    // some variants omitted
}

Used for justifying the text inside a Label widget. (See also Alignment).

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

The text is placed at the left edge of the label.

Right

The text is placed at the right edge of the label.

Center

The text is placed in the center of the label.

Fill

The text is placed is distributed across the label.

Trait Implementations

impl Clone for Justification[src]

impl Copy for Justification[src]

impl Debug for Justification[src]

impl Display for Justification[src]

impl Eq for Justification[src]

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

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

impl Hash for Justification[src]

impl Ord for Justification[src]

impl PartialEq<Justification> for Justification[src]

impl PartialOrd<Justification> for Justification[src]

impl SetValue for Justification[src]

impl StaticType for Justification[src]

impl StructuralEq for Justification[src]

impl StructuralPartialEq for Justification[src]

Auto Trait Implementations

impl RefUnwindSafe for Justification

impl Send for Justification

impl Sync for Justification

impl Unpin for Justification

impl UnwindSafe for Justification

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.