pub enum QueryResponse {
Arrow(Vec<u8>),
Json(String),
Response(Response),
Empty,
}
Variants§
Trait Implementations§
Source§impl IntoResponse for QueryResponse
impl IntoResponse for QueryResponse
Source§fn into_response(self) -> Response
fn into_response(self) -> Response
Create a response.
Auto Trait Implementations§
impl Freeze for QueryResponse
impl !RefUnwindSafe for QueryResponse
impl Send for QueryResponse
impl !Sync for QueryResponse
impl Unpin for QueryResponse
impl !UnwindSafe for QueryResponse
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