Skip to main content

Block

Struct Block 

Source
pub struct Block<Message = ()> { /* private fields */ }

Implementations§

Source§

impl<Message> Block<Message>

Source

pub fn new() -> Self

Source

pub fn bordered() -> Self

Source

pub fn title<T>(self, title: T) -> Self
where T: Into<Line>,

Source

pub fn title_top<T>(self, title: T) -> Self
where T: Into<Line>,

Source

pub fn title_bottom<T>(self, title: T) -> Self
where T: Into<Line>,

Source

pub fn title_alignment(self, alignment: Alignment) -> Self

Source

pub fn title_position(self, position: TitlePosition) -> Self

Source

pub fn bordered_flag(self, bordered: bool) -> Self

Source

pub fn borders(self, borders: Borders) -> Self

Source

pub fn border_type(self, border_type: BorderType) -> Self

Source

pub fn border_set(self, border_set: Set) -> Self

Source

pub fn padding(self, padding: Padding) -> Self

Source

pub fn border_style<S: Into<Style>>(self, style: S) -> Self

Source

pub fn title_style<S: Into<Style>>(self, style: S) -> Self

Source

pub fn child(self, child: Element<Message>) -> Self

Source

pub fn children<I>(self, children: I) -> Self
where I: IntoIterator<Item = Element<Message>>,

Source

pub fn layout(self, layout: Layout) -> Self

Source

pub fn style<S: Into<Style>>(self, style: S) -> Self

Source

pub fn build(self) -> Element<Message>

Source

pub fn inner(&self, rect: Rect) -> Rect

Source

pub fn into_frame(self) -> BlockFrame

Auto Trait Implementations§

§

impl<Message> Freeze for Block<Message>

§

impl<Message = ()> !RefUnwindSafe for Block<Message>

§

impl<Message = ()> !Send for Block<Message>

§

impl<Message = ()> !Sync for Block<Message>

§

impl<Message> Unpin for Block<Message>

§

impl<Message> UnsafeUnpin for Block<Message>

§

impl<Message = ()> !UnwindSafe for Block<Message>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

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

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

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

Performs the conversion.