pub enum HttpChannelResponse {
Auth {
request_id: String,
},
Command {
request_id: String,
result: CommandResult,
},
Query {
request_id: String,
result: QueryResult,
},
}Expand description
HTTP Channel response enum for different response types
Variants§
Auth
Authentication response
Command
Command execution response with frames
Query
Query execution response with frames
Trait Implementations§
Auto Trait Implementations§
impl Freeze for HttpChannelResponse
impl RefUnwindSafe for HttpChannelResponse
impl Send for HttpChannelResponse
impl Sync for HttpChannelResponse
impl Unpin for HttpChannelResponse
impl UnwindSafe for HttpChannelResponse
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