pub struct BridgeContext {}Expand description
Context for rendering the runtime bridge template.
Currently minimal, but allows for future extension with server-specific configuration or metadata.
§Examples
use mcp_execution_codegen::progressive::BridgeContext;
let context = BridgeContext::default();
// Currently no fields, but provides extensibilityTrait 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 · 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 Default for BridgeContext
impl Default for BridgeContext
Source§fn default() -> BridgeContext
fn default() -> BridgeContext
Returns the “default value” for a type. Read more
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
Auto Trait Implementations§
impl Freeze for BridgeContext
impl RefUnwindSafe for BridgeContext
impl Send for BridgeContext
impl Sync for BridgeContext
impl Unpin 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