Struct gloo_history::query::Raw
source · pub struct Raw<T>(pub T);
Expand description
Encoding for raw query strings.
The Raw
wrapper allows for specifying a query string directly, bypassing the encoding. If
you use this strategy, you need to take care to escape characters that are not allowed to
appear in query strings yourself.
Tuple Fields§
§0: T
Trait Implementations§
Auto Trait Implementations§
impl<T> RefUnwindSafe for Raw<T>where
T: RefUnwindSafe,
impl<T> Send for Raw<T>where
T: Send,
impl<T> Sync for Raw<T>where
T: Sync,
impl<T> Unpin for Raw<T>where
T: Unpin,
impl<T> UnwindSafe for Raw<T>where
T: UnwindSafe,
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