[][src]Struct conrod_core::widget::list::Item

pub struct Item<D, S> {
    pub i: usize,
    pub widget_id: Id,
    pub last_id: Option<Id>,
    // some fields omitted
}

The data necessary for instantiating a single item within a List.

Fields

i: usize

The index of the item within the list.

widget_id: Id

The id generated for the widget.

last_id: Option<Id>

The id used for the previous item's widget.

Methods

impl<D, S> Item<D, S> where
    D: Direction,
    S: ItemSize
[src]

pub fn set<W>(self, widget: W, ui: &mut UiCell) -> W::Event where
    W: Widget
[src]

Sets the given widget as the widget to use for the item.

Sets the:

  • position of the widget.
  • dimensions of the widget.
  • parent of the widget.
  • and finally sets the widget within the Ui.

impl<S> Item<Down, S>[src]

pub fn width(&self) -> Scalar[src]

The width of the Item.

impl Item<Down, Fixed>[src]

pub fn height(&self) -> Scalar[src]

The height of the Item.

impl<S> Item<Up, S>[src]

pub fn width(&self) -> Scalar[src]

The width of the Item.

impl Item<Up, Fixed>[src]

pub fn height(&self) -> Scalar[src]

The height of the Item.

impl<S> Item<Right, S>[src]

pub fn height(&self) -> Scalar[src]

The height of the Item.

impl Item<Right, Fixed>[src]

pub fn width(&self) -> Scalar[src]

The width of the Item.

impl<S> Item<Left, S>[src]

pub fn height(&self) -> Scalar[src]

The height of the Item.

impl Item<Left, Fixed>[src]

pub fn width(&self) -> Scalar[src]

The width of the Item.

Trait Implementations

impl<D: Clone, S: Clone> Clone for Item<D, S>[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl<D: Copy, S: Copy> Copy for Item<D, S>[src]

impl<D: Debug, S: Debug> Debug for Item<D, S>[src]

Auto Trait Implementations

impl<D, S> Unpin for Item<D, S> where
    D: Unpin,
    S: Unpin

impl<D, S> Send for Item<D, S> where
    D: Send,
    S: Send

impl<D, S> Sync for Item<D, S> where
    D: Sync,
    S: Sync

impl<D, S> RefUnwindSafe for Item<D, S> where
    D: RefUnwindSafe,
    S: RefUnwindSafe

impl<D, S> UnwindSafe for Item<D, S> where
    D: UnwindSafe,
    S: UnwindSafe

Blanket Implementations

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

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

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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<T> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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