pub enum LayerGeometry<'a> {
Tier(TierGeometry<'a>),
Connector(ConnectorGeometry),
FlowLabels(FlowLabelsGeometry),
}Expand description
A single positioned layer in the layout.
Variants§
Tier(TierGeometry<'a>)
A positioned tier.
Connector(ConnectorGeometry)
A positioned connector.
FlowLabels(FlowLabelsGeometry)
Positioned flow labels.
Trait Implementations§
Source§impl<'a> Clone for LayerGeometry<'a>
impl<'a> Clone for LayerGeometry<'a>
Source§fn clone(&self) -> LayerGeometry<'a>
fn clone(&self) -> LayerGeometry<'a>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'a> Debug for LayerGeometry<'a>
impl<'a> Debug for LayerGeometry<'a>
Source§impl<'a> PartialEq for LayerGeometry<'a>
impl<'a> PartialEq for LayerGeometry<'a>
impl<'a> StructuralPartialEq for LayerGeometry<'a>
Auto Trait Implementations§
impl<'a> Freeze for LayerGeometry<'a>
impl<'a> RefUnwindSafe for LayerGeometry<'a>
impl<'a> Send for LayerGeometry<'a>
impl<'a> Sync for LayerGeometry<'a>
impl<'a> Unpin for LayerGeometry<'a>
impl<'a> UnsafeUnpin for LayerGeometry<'a>
impl<'a> UnwindSafe for LayerGeometry<'a>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more