pub enum ErrorCode {
ParseError = -32_700,
InvalidRequest = -32_600,
MethodNotFound = -32_601,
InvalidParams = -32_602,
InternalError = -32_603,
ConnectionClosed = -32_000,
RequestTimeout = -32_001,
ResourceNotFound = -32_002,
ToolNotFound = -32_003,
PromptNotFound = -32_004,
Unauthorized = -32_005,
}Expand description
MCP protocol error codes (JSON-RPC 2.0 + MCP extensions)
Variants§
ParseError = -32_700
InvalidRequest = -32_600
MethodNotFound = -32_601
InvalidParams = -32_602
InternalError = -32_603
ConnectionClosed = -32_000
RequestTimeout = -32_001
ResourceNotFound = -32_002
ToolNotFound = -32_003
PromptNotFound = -32_004
Implementations§
Trait Implementations§
impl Copy for ErrorCode
impl Eq for ErrorCode
impl StructuralPartialEq for ErrorCode
Auto Trait Implementations§
impl Freeze for ErrorCode
impl RefUnwindSafe for ErrorCode
impl Send for ErrorCode
impl Sync for ErrorCode
impl Unpin for ErrorCode
impl UnsafeUnpin for ErrorCode
impl UnwindSafe for ErrorCode
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