pub struct CreateConnectorParams {
pub provider: Option<ConnectorProvider>,
pub name: Option<String>,
pub room_id: Option<String>,
pub default_rule_id: Option<String>,
pub region: Option<String>,
}Expand description
The parameters for ConnectorsResource::create.
Fields§
§provider: Option<ConnectorProvider>The telephony provider. Required.
name: Option<String>The connector’s display name.
room_id: Option<String>The fallback room, used when no routing rule resolves.
default_rule_id: Option<String>The routing rule to apply by default.
region: Option<String>Pins call ingestion to a region.
Trait Implementations§
Source§impl Clone for CreateConnectorParams
impl Clone for CreateConnectorParams
Source§fn clone(&self) -> CreateConnectorParams
fn clone(&self) -> CreateConnectorParams
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 CreateConnectorParams
impl Debug for CreateConnectorParams
Source§impl Default for CreateConnectorParams
impl Default for CreateConnectorParams
Source§fn default() -> CreateConnectorParams
fn default() -> CreateConnectorParams
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for CreateConnectorParams
impl RefUnwindSafe for CreateConnectorParams
impl Send for CreateConnectorParams
impl Sync for CreateConnectorParams
impl Unpin for CreateConnectorParams
impl UnsafeUnpin for CreateConnectorParams
impl UnwindSafe for CreateConnectorParams
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