pub struct ConnectorProfile {
pub id: ProfileId,
pub name: String,
pub port_ids: Vec<ProfileId>,
pub properties: Vec<(String, String)>,
}Expand description
Spec §5.4.1 — Connector-Profile (Bindung zwischen 2+ Port-Profiles).
Fields§
§id: ProfileIdUUID des Connectors.
name: StringConnector-Name.
port_ids: Vec<ProfileId>Liste der Port-IDs, die dieser Connector verbindet.
properties: Vec<(String, String)>User-defined Properties.
Trait Implementations§
Source§impl Clone for ConnectorProfile
impl Clone for ConnectorProfile
Source§fn clone(&self) -> ConnectorProfile
fn clone(&self) -> ConnectorProfile
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ConnectorProfile
impl Debug for ConnectorProfile
Source§impl Default for ConnectorProfile
impl Default for ConnectorProfile
Source§fn default() -> ConnectorProfile
fn default() -> ConnectorProfile
Returns the “default value” for a type. Read more
Source§impl PartialEq for ConnectorProfile
impl PartialEq for ConnectorProfile
Source§fn eq(&self, other: &ConnectorProfile) -> bool
fn eq(&self, other: &ConnectorProfile) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for ConnectorProfile
impl StructuralPartialEq for ConnectorProfile
Auto Trait Implementations§
impl Freeze for ConnectorProfile
impl RefUnwindSafe for ConnectorProfile
impl Send for ConnectorProfile
impl Sync for ConnectorProfile
impl Unpin for ConnectorProfile
impl UnsafeUnpin for ConnectorProfile
impl UnwindSafe for ConnectorProfile
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