pub struct ConnectorGeometry {
pub style: ConnectorStyle,
pub label: Option<String>,
pub is_internal: bool,
}Expand description
Layout of a connector between tiers.
Fields§
§style: ConnectorStyleVisual style (line or dots).
label: Option<String>Optional protocol/description label.
is_internal: boolWhether this connector is inside a container.
Trait Implementations§
Source§impl Clone for ConnectorGeometry
impl Clone for ConnectorGeometry
Source§fn clone(&self) -> ConnectorGeometry
fn clone(&self) -> ConnectorGeometry
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 Debug for ConnectorGeometry
impl Debug for ConnectorGeometry
Source§impl PartialEq for ConnectorGeometry
impl PartialEq for ConnectorGeometry
impl StructuralPartialEq for ConnectorGeometry
Auto Trait Implementations§
impl Freeze for ConnectorGeometry
impl RefUnwindSafe for ConnectorGeometry
impl Send for ConnectorGeometry
impl Sync for ConnectorGeometry
impl Unpin for ConnectorGeometry
impl UnsafeUnpin for ConnectorGeometry
impl UnwindSafe for ConnectorGeometry
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