[−][src]Struct conrod_core::widget::graph::NodeContext
A context for a node yielded during the node instantiation stage.
This type can be used to:
- Get the position of the node via
point()
. - Get the ID for this node via
node_id()
. - Convert into a
NodeWidget
ready for instantiation within theUi
viawidget(a_widget)
.
Implementations
impl<'a, NI> NodeContext<'a, NI> where
NI: NodeId,
[src]
NI: NodeId,
pub fn node_id(&self) -> NI
[src]
The unique identifier associated with this node.
pub fn point(&self) -> Point
[src]
The location of the node.
pub fn widget<W>(self, widget: W) -> NodeWidget<'a, NI, W>
[src]
Specify the widget to use
Auto Trait Implementations
impl<'a, NI> RefUnwindSafe for NodeContext<'a, NI> where
NI: RefUnwindSafe,
NI: RefUnwindSafe,
impl<'a, NI> Send for NodeContext<'a, NI> where
NI: Sync,
NI: Sync,
impl<'a, NI> Sync for NodeContext<'a, NI> where
NI: Sync,
NI: Sync,
impl<'a, NI> Unpin for NodeContext<'a, NI> where
NI: Unpin,
NI: Unpin,
impl<'a, NI> UnwindSafe for NodeContext<'a, NI> where
NI: RefUnwindSafe + UnwindSafe,
NI: RefUnwindSafe + UnwindSafe,
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, 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>,