[][src]Struct meli::components::utilities::layouts::VSplit

pub struct VSplit {
    left: Box<dyn Component>,
    right: Box<dyn Component>,
    show_divider: bool,
    prev_visibility: (bool, bool),
    ratio: usize,
    id: ComponentId,
}

A vertically split in half container.

Fields

left: Box<dyn Component>right: Box<dyn Component>show_divider: boolprev_visibility: (bool, bool)ratio: usize

This is the width of the right container to the entire width.

id: ComponentId

Implementations

impl VSplit[src]

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

Trait Implementations

impl Component for VSplit[src]

impl Debug for VSplit[src]

impl Display for VSplit[src]

Auto Trait Implementations

impl !RefUnwindSafe for VSplit

impl Send for VSplit

impl Sync for VSplit

impl Unpin for VSplit

impl !UnwindSafe for VSplit

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]