pub struct BridgeContext {
pub profile_id: String,
pub launch_id: Option<String>,
pub source_protocol: WireProtocol,
pub target_protocol: WireProtocol,
pub provider_settings: Option<Value>,
pub history: Option<BridgeHistory>,
pub extensions: Extensions,
}Fields§
§profile_id: String§launch_id: Option<String>§source_protocol: WireProtocol§target_protocol: WireProtocol§provider_settings: Option<Value>§history: Option<BridgeHistory>§extensions: ExtensionsTrait Implementations§
Source§impl Clone for BridgeContext
impl Clone for BridgeContext
Source§fn clone(&self) -> BridgeContext
fn clone(&self) -> BridgeContext
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 BridgeContext
impl Debug for BridgeContext
Source§impl<'de> Deserialize<'de> for BridgeContext
impl<'de> Deserialize<'de> for BridgeContext
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 PartialEq for BridgeContext
impl PartialEq for BridgeContext
Source§fn eq(&self, other: &BridgeContext) -> bool
fn eq(&self, other: &BridgeContext) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for BridgeContext
impl Serialize for BridgeContext
impl StructuralPartialEq for BridgeContext
Auto Trait Implementations§
impl Freeze for BridgeContext
impl RefUnwindSafe for BridgeContext
impl Send for BridgeContext
impl Sync for BridgeContext
impl Unpin for BridgeContext
impl UnsafeUnpin for BridgeContext
impl UnwindSafe for BridgeContext
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