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 (binding between 2+ port profiles).
Fields§
§id: ProfileIdUUID of the connector.
name: StringConnector name.
port_ids: Vec<ProfileId>List of port IDs that this connector connects.
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
impl Eq for ConnectorProfile
Source§impl PartialEq for ConnectorProfile
impl PartialEq 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