Enum sourceview5::ViewGutterPosition[][src]

#[non_exhaustive]pub enum ViewGutterPosition {
    Lines,
    Marks,
    // some variants omitted
}

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

the gutter position of the lines renderer

Marks

the gutter position of the marks renderer

Trait Implementations

impl Clone for ViewGutterPosition[src]

impl Copy for ViewGutterPosition[src]

impl Debug for ViewGutterPosition[src]

impl Display for ViewGutterPosition[src]

impl Eq for ViewGutterPosition[src]

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

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

impl Hash for ViewGutterPosition[src]

impl Ord for ViewGutterPosition[src]

impl PartialEq<ViewGutterPosition> for ViewGutterPosition[src]

impl PartialOrd<ViewGutterPosition> for ViewGutterPosition[src]

impl SetValue for ViewGutterPosition[src]

impl StaticType for ViewGutterPosition[src]

impl StructuralEq for ViewGutterPosition[src]

impl StructuralPartialEq for ViewGutterPosition[src]

Auto Trait Implementations

impl RefUnwindSafe for ViewGutterPosition

impl Send for ViewGutterPosition

impl Sync for ViewGutterPosition

impl Unpin for ViewGutterPosition

impl UnwindSafe for ViewGutterPosition

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: SetValue + Send + ToValue + ?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.