#[non_exhaustive]pub struct BridgeDialString {
pub variables: Option<Variables>,
pub groups: Vec<Vec<Endpoint>>,
}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
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.variables: Option<Variables>Default-scope variables applied to all endpoints.
groups: Vec<Vec<Endpoint>>Sequential failover groups (|-separated). Within each group,
endpoints ring simultaneously (,-separated).
Implementations§
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.