pub struct ConnectionConfig {
pub line_type: LineType,
pub arrow_type: ArrowType,
pub arrow_direction: ArrowDirection,
pub extra_length_num: Option<u8>,
}Expand description
A struct representing the possible attributes for a Connection.
Fields§
§line_type: LineTypeThe enum representation of the type of line you want
arrow_type: ArrowTypeThe enum representation of the type of arrow you want
arrow_direction: ArrowDirectionThe enum representation of the direction you want the arrows to point
extra_length_num: Option<u8>An optional amount of additional flags to increase line length
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ConnectionConfig
impl RefUnwindSafe for ConnectionConfig
impl Send for ConnectionConfig
impl Sync for ConnectionConfig
impl Unpin for ConnectionConfig
impl UnwindSafe for ConnectionConfig
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