pub enum ChannelResponse {
Auth {
request_id: String,
},
Command {
request_id: String,
result: CommandResult,
},
Query {
request_id: String,
result: QueryResult,
},
}Expand description
Channel response enum for different response types (WebSocket-specific)
Variants§
Auth
Authentication response
Command
Command execution response with frames
Query
Query execution response with frames