pub trait ToConnectorId {
// Required method
fn to_connector_id(&self) -> Result<(ConnectorType, u32), String>;
}
Expand description
A type that can be converted to a (ConnectorType, idx)
tuple.
pub trait ToConnectorId {
// Required method
fn to_connector_id(&self) -> Result<(ConnectorType, u32), String>;
}
A type that can be converted to a (ConnectorType, idx)
tuple.