pub struct BridgeDialString { /* private fields */ }Expand description
Typed bridge dial string.
Format: {global_vars}[ep1_vars]ep1,[ep2_vars]ep2|[ep3_vars]ep3
,separates endpoints rung simultaneously (within a group)|separates groups tried sequentially (failover)- Each endpoint may have channel-scope
[variables] - Global
{variables}apply to all endpoints
Implementations§
Source§impl BridgeDialString
impl BridgeDialString
Sourcepub fn new(groups: Vec<Vec<Endpoint>>) -> Self
pub fn new(groups: Vec<Vec<Endpoint>>) -> Self
Create a new bridge dial string with the given failover groups.
Sourcepub fn with_variables(self, variables: Variables) -> Self
pub fn with_variables(self, variables: Variables) -> Self
Set global default-scope variables.
Sourcepub fn variables(&self) -> Option<&Variables>
pub fn variables(&self) -> Option<&Variables>
Default-scope variables applied to all endpoints.
Sourcepub fn groups(&self) -> &[Vec<Endpoint>]
pub fn groups(&self) -> &[Vec<Endpoint>]
Sequential failover groups (|-separated). Within each group,
endpoints ring simultaneously (,-separated).
Sourcepub fn variables_mut(&mut self) -> &mut Option<Variables>
pub fn variables_mut(&mut self) -> &mut Option<Variables>
Mutable reference to the default-scope variables.
Sourcepub fn groups_mut(&mut self) -> &mut Vec<Vec<Endpoint>>
pub fn groups_mut(&mut self) -> &mut Vec<Vec<Endpoint>>
Mutable reference to the failover groups.
Trait Implementations§
Source§impl Clone for BridgeDialString
impl Clone for BridgeDialString
Source§fn clone(&self) -> BridgeDialString
fn clone(&self) -> BridgeDialString
Returns a duplicate 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 BridgeDialString
impl Debug for BridgeDialString
Source§impl<'de> Deserialize<'de> for BridgeDialString
impl<'de> Deserialize<'de> for BridgeDialString
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for BridgeDialString
impl Display for BridgeDialString
Source§impl FromStr for BridgeDialString
impl FromStr for BridgeDialString
Source§impl PartialEq for BridgeDialString
impl PartialEq for BridgeDialString
Source§impl Serialize for BridgeDialString
impl Serialize for BridgeDialString
impl Eq for BridgeDialString
impl StructuralPartialEq for BridgeDialString
Auto Trait Implementations§
impl Freeze for BridgeDialString
impl RefUnwindSafe for BridgeDialString
impl Send for BridgeDialString
impl Sync for BridgeDialString
impl Unpin for BridgeDialString
impl UnsafeUnpin for BridgeDialString
impl UnwindSafe for BridgeDialString
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.