pub enum BridgeMode {
Stdio {
conductor_command: Vec<String>,
},
Http,
}Expand description
Mode for the MCP bridge transport.
Variants§
Trait Implementations§
Source§impl Clone for BridgeMode
impl Clone for BridgeMode
Source§fn clone(&self) -> BridgeMode
fn clone(&self) -> BridgeMode
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 BridgeMode
impl Debug for BridgeMode
Source§impl Default for BridgeMode
impl Default for BridgeMode
Source§fn default() -> BridgeMode
fn default() -> BridgeMode
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for BridgeMode
impl RefUnwindSafe for BridgeMode
impl Send for BridgeMode
impl Sync for BridgeMode
impl Unpin for BridgeMode
impl UnsafeUnpin for BridgeMode
impl UnwindSafe for BridgeMode
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