[−][src]Enum conrod_core::graph::Edge
An edge between nodes within the UI Graph.
Variants
Position(Axis)
Describes the relative positioning of widgets.
When adding an edge a -> b, b is positioned relatively to a.
Describes the rendering order of the widgets.
When adding an edge a -> b, a is the parent of (and will be rendered before) b.
Describes when a widget is used solely as a graphical element for another widget.
When adding an edge a -> b, b is considered to be a graphical element of a. This implies several things about b:
- If b is picked within either Graph::pick_widget or Graph::pick_top_scrollable_widget, it will instead return the index for a.
- When determining the Graph::scroll_offset for b, a's scrolling (if it is scrollable, that is) will be skipped.
- Any Graphic child of b will be considered as a Graphic child of a.
Trait Implementations
impl Clone for Edge
[src]
impl Copy for Edge
[src]
impl Debug for Edge
[src]
impl Eq for Edge
[src]
impl PartialEq<Edge> for Edge
[src]
impl StructuralEq for Edge
[src]
impl StructuralPartialEq for Edge
[src]
Auto Trait Implementations
impl RefUnwindSafe for Edge
impl Send for Edge
impl Sync for Edge
impl Unpin for Edge
impl UnwindSafe for Edge
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<Q, K> Equivalent<K> for Q where
K: Borrow<Q> + ?Sized,
Q: Eq + ?Sized,
[src]
K: Borrow<Q> + ?Sized,
Q: Eq + ?Sized,
fn equivalent(&self, key: &K) -> bool
[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> Style for T where
T: Any + Debug + PartialEq<T>,
[src]
T: Any + Debug + PartialEq<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>,