[−][src]Struct conrod_core::widget::matrix::Element
Data necessary for instantiating a widget for a single Matrix element.
Fields
widget_id: IdThe id generated for the widget.
row: usizeThe row number for the Element.
col: usizeThe column number for the Element.
w: ScalarThe width of the element.
h: ScalarThe height of the element.
rel_x: ScalarThe x position of the element relative to the centre of the Matrix.
rel_y: ScalarThe y position of the element relative to the centre of the Matrix.
Implementations
impl Element[src]
pub fn set<W>(self, widget: W, ui: &mut UiCell<'_>) -> W::Event where
W: Widget, [src]
W: Widget,
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.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for Element
impl Send for Element
impl Sync for Element
impl Unpin for Element
impl UnwindSafe for Element
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,