pub struct NonVisualConnectorProperties {
pub connector_locks: Option<ConnectorLocking>,
pub start_connection: Option<Connection>,
pub end_connection: Option<Connection>,
}
Fields§
§connector_locks: Option<ConnectorLocking>
This element specifies all locking properties for a connection shape. These properties inform the generating application about specific properties that have been previously locked and thus should not be changed.
start_connection: Option<Connection>
This element specifies the starting connection that should be made by the corresponding connector shape. This connects the head of the connector to the first shape.
end_connection: Option<Connection>
This element specifies the ending connection that should be made by the corresponding connector shape. This connects the end tail of the connector to the final destination shape.
Implementations§
Source§impl NonVisualConnectorProperties
impl NonVisualConnectorProperties
pub fn from_xml_element(xml_node: &XmlNode) -> Result<Self>
Trait Implementations§
Source§impl Clone for NonVisualConnectorProperties
impl Clone for NonVisualConnectorProperties
Source§fn clone(&self) -> NonVisualConnectorProperties
fn clone(&self) -> NonVisualConnectorProperties
Returns a copy 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 NonVisualConnectorProperties
impl Debug for NonVisualConnectorProperties
Source§impl Default for NonVisualConnectorProperties
impl Default for NonVisualConnectorProperties
Source§fn default() -> NonVisualConnectorProperties
fn default() -> NonVisualConnectorProperties
Returns the “default value” for a type. Read more
Source§impl PartialEq for NonVisualConnectorProperties
impl PartialEq for NonVisualConnectorProperties
Source§fn eq(&self, other: &NonVisualConnectorProperties) -> bool
fn eq(&self, other: &NonVisualConnectorProperties) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for NonVisualConnectorProperties
Auto Trait Implementations§
impl Freeze for NonVisualConnectorProperties
impl RefUnwindSafe for NonVisualConnectorProperties
impl Send for NonVisualConnectorProperties
impl Sync for NonVisualConnectorProperties
impl Unpin for NonVisualConnectorProperties
impl UnwindSafe for NonVisualConnectorProperties
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