[][src]Struct meli::components::utilities::HSplit

pub struct HSplit {
    top: Box<dyn Component>,
    bottom: Box<dyn Component>,
    show_divider: bool,
    ratio: usize,
    id: ComponentId,
}

A horizontally split in half container.

Fields

top: Box<dyn Component>bottom: Box<dyn Component>show_divider: boolratio: usizeid: ComponentId

Implementations

impl HSplit[src]

pub fn new(
    top: Box<dyn Component>,
    bottom: Box<dyn Component>,
    ratio: usize,
    show_divider: bool
) -> Self
[src]

Trait Implementations

impl Component for HSplit[src]

impl Debug for HSplit[src]

impl Display for HSplit[src]

Auto Trait Implementations

impl !RefUnwindSafe for HSplit

impl Send for HSplit

impl Sync for HSplit

impl Unpin for HSplit

impl !UnwindSafe for HSplit

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> Instrument for T[src]

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

impl<T> ToString for T where
    T: Display + ?Sized
[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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 

impl<T> WithSubscriber for T[src]