pub struct Query<'a> {
pub families: &'a [Family<'a>],
pub weight: Weight,
pub stretch: Stretch,
pub style: Style,
}
Expand description
A database query.
Mainly used by Database::query()
.
Fields§
§families: &'a [Family<'a>]
A prioritized list of font family names or generic family names.
font-family in CSS.
weight: Weight
Specifies the weight of glyphs in the font, their degree of blackness or stroke thickness.
font-weight in CSS.
stretch: Stretch
Selects a normal, condensed, or expanded face from a font family.
font-stretch in CSS.
style: Style
Allows italic or oblique faces to be selected.
font-style in CSS.
Trait Implementations§
impl<'a> Copy for Query<'a>
impl<'a> Eq for Query<'a>
impl<'a> StructuralPartialEq for Query<'a>
Auto Trait Implementations§
impl<'a> Freeze for Query<'a>
impl<'a> RefUnwindSafe for Query<'a>
impl<'a> Send for Query<'a>
impl<'a> Sync for Query<'a>
impl<'a> Unpin for Query<'a>
impl<'a> UnwindSafe for Query<'a>
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)