pub enum ParamKey {
Key(String),
RepeatedKey(String),
}Expand description
Specifically represents a parameter in Location::Query. We need special treatment for repeated keys.
Variants§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for ParamKey
impl RefUnwindSafe for ParamKey
impl Send for ParamKey
impl Sync for ParamKey
impl Unpin for ParamKey
impl UnwindSafe for ParamKey
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