Struct egui::widgets::Separator[][src]

#[must_use = "You should put this widget in an ui with `ui.add(widget);`"]pub struct Separator { /* fields omitted */ }

A visual separator. A horizontal or vertical line (depending on Layout).

Usually you’d use the shorter version Ui::separator.

// These are equivalent:
ui.separator();
ui.add(egui::Separator::new());

Implementations

impl Separator[src]

pub fn new() -> Self[src]

pub fn spacing(self, spacing: f32) -> Self[src]

How much space we take up. The line is painted in the middle of this.

pub fn horizontal(self) -> Self[src]

Explicitly ask for a horizontal line. By default you will get a horizontal line in vertical layouts, and a vertical line in horizontal layouts.

pub fn vertical(self) -> Self[src]

Explicitly ask for a vertical line. By default you will get a horizontal line in vertical layouts, and a vertical line in horizontal layouts.

Trait Implementations

impl Widget for Separator[src]

Auto Trait Implementations

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