pub struct QueryKeyEntry {
pub key_name: String,
pub has_params: bool,
pub param_list: String,
pub param_names: String,
}Expand description
Entry for a single query key.
Fields§
§key_name: String§has_params: bool§param_list: String§param_names: StringTrait Implementations§
Source§impl Clone for QueryKeyEntry
impl Clone for QueryKeyEntry
Source§fn clone(&self) -> QueryKeyEntry
fn clone(&self) -> QueryKeyEntry
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for QueryKeyEntry
impl Debug for QueryKeyEntry
Auto Trait Implementations§
impl Freeze for QueryKeyEntry
impl RefUnwindSafe for QueryKeyEntry
impl Send for QueryKeyEntry
impl Sync for QueryKeyEntry
impl Unpin for QueryKeyEntry
impl UnwindSafe for QueryKeyEntry
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