pub struct QueryInfo {
pub query_type: QueryType,
pub is_read_only: bool,
}Expand description
Information about a parsed query
Fields§
§query_type: QueryTypeThe type of query operation
is_read_only: boolWhether the query only reads data (no modifications)
Trait Implementations§
Auto Trait Implementations§
impl Freeze for QueryInfo
impl RefUnwindSafe for QueryInfo
impl Send for QueryInfo
impl Sync for QueryInfo
impl Unpin for QueryInfo
impl UnsafeUnpin for QueryInfo
impl UnwindSafe for QueryInfo
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