pub type Result<T> = Result<T, Error>;
Expand description
Result type alias for MCP protocol operations
Note: Use McpResult
instead of Result
to avoid conflicts with std::result::Result
Aliased Type§
pub enum Result<T> {
Ok(T),
Err(Error),
}