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::default());

Implementations

impl Separator[src]

pub fn new() -> Self[src]

👎 Deprecated:

Use Separator::default() instead

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 Default for Separator[src]

fn default() -> Self[src]

Returns the “default value” for a type. Read more

impl Widget for Separator[src]

fn ui(self, ui: &mut Ui) -> Response[src]

Allocate space, interact, paint, and return a Response.

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

pub fn type_id(&self) -> TypeId[src]

Gets the TypeId of self. Read more

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

pub fn borrow(&self) -> &T[src]

Immutably borrows from an owned value. Read more

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

pub fn borrow_mut(&mut self) -> &mut T[src]

Mutably borrows from an owned value. Read more

impl<T> From<T> for T[src]

pub fn from(t: T) -> T[src]

Performs the conversion.

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

pub fn into(self) -> U[src]

Performs the conversion.

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.

pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]

Performs the conversion.

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.

pub fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]

Performs the conversion.