pub struct ProxyBuildResult {
pub proxy: McpProxy,
pub skipped: Vec<SkippedBackend>,
}Expand description
Result of building an McpProxy, including any backends that were skipped.
Fields§
§proxy: McpProxyThe constructed proxy.
skipped: Vec<SkippedBackend>Backends that failed to connect or initialize and were skipped.
Auto Trait Implementations§
impl !RefUnwindSafe for ProxyBuildResult
impl !UnwindSafe for ProxyBuildResult
impl Freeze for ProxyBuildResult
impl Send for ProxyBuildResult
impl Sync for ProxyBuildResult
impl Unpin for ProxyBuildResult
impl UnsafeUnpin for ProxyBuildResult
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