#[non_exhaustive]pub struct StrQueryHelper<'query> { /* private fields */ }
Available on crate feature
i-implement-a-third-party-backend-and-opt-into-breaking-changes
only.Expand description
A helper type that allows printing out str slices
This type is necessary because it’s not possible
to cast from a reference of a unsized type like &str
to a reference of a trait object even if that
type implements all necessary traits
Implementations§
Trait Implementations§
Source§impl Debug for StrQueryHelper<'_>
impl Debug for StrQueryHelper<'_>
Source§impl Display for StrQueryHelper<'_>
impl Display for StrQueryHelper<'_>
impl DebugQuery for StrQueryHelper<'_>
Auto Trait Implementations§
impl<'query> Freeze for StrQueryHelper<'query>
impl<'query> RefUnwindSafe for StrQueryHelper<'query>
impl<'query> Send for StrQueryHelper<'query>
impl<'query> Sync for StrQueryHelper<'query>
impl<'query> Unpin for StrQueryHelper<'query>
impl<'query> UnwindSafe for StrQueryHelper<'query>
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