pub struct MemcachedHandler;Trait Implementations§
Source§impl ProtocolHandler for MemcachedHandler
impl ProtocolHandler for MemcachedHandler
Source§fn parse_request(&self, buf: &[u8]) -> Option<String>
fn parse_request(&self, buf: &[u8]) -> Option<String>
Parse request bytes → summary for event list
Source§fn format_response_detail(&self, buf: &[u8]) -> Option<String>
fn format_response_detail(&self, buf: &[u8]) -> Option<String>
Format response detail (for Detail panel)
Source§fn needs_request_buffering(&self) -> bool
fn needs_request_buffering(&self) -> bool
Does this protocol need request buffering across reads?
Source§fn needs_response_buffering(&self) -> bool
fn needs_response_buffering(&self) -> bool
Does this protocol need response buffering across reads?
Source§fn request_complete(&self, buf: &[u8]) -> bool
fn request_complete(&self, buf: &[u8]) -> bool
Is the request buffer complete?
Source§fn response_complete(&self, buf: &[u8]) -> bool
fn response_complete(&self, buf: &[u8]) -> bool
Is the response buffer complete?
Source§fn extract_full_command(&self, buf: &[u8]) -> Option<String>
fn extract_full_command(&self, buf: &[u8]) -> Option<String>
Extract full command from request (for Detail panel, copy, edit)
Source§fn to_replay_command(&self, ev: &ProxyEvent) -> String
fn to_replay_command(&self, ev: &ProxyEvent) -> String
Generate a replayable command string (for yank/copy)
Source§fn is_frame_based(&self) -> bool
fn is_frame_based(&self) -> bool
Is this a frame-based protocol with custom proxy logic? (AMQP)
Auto Trait Implementations§
impl Freeze for MemcachedHandler
impl RefUnwindSafe for MemcachedHandler
impl Send for MemcachedHandler
impl Sync for MemcachedHandler
impl Unpin for MemcachedHandler
impl UnsafeUnpin for MemcachedHandler
impl UnwindSafe for MemcachedHandler
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