pub enum Request {
Mcp(McpRequest),
OAuth(OAuthRequest),
Raw(RawRequest),
}Expand description
Top-level sum type produced by intake. Owns its body.
Variants§
Mcp(McpRequest)
JSON-RPC 2.0 over streamable HTTP or legacy SSE.
OAuth(OAuthRequest)
OAuth / discovery / token / callback — content-matched.
Raw(RawRequest)
Everything else — forwarded unchanged, no inspection.
Trait Implementations§
Auto Trait Implementations§
impl !Freeze for Request
impl !RefUnwindSafe for Request
impl Send for Request
impl !Sync for Request
impl Unpin for Request
impl UnsafeUnpin for Request
impl !UnwindSafe for Request
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