pub struct Hints {
pub hints: Vec<Cow<'static, str>>,
}Expand description
The /*+ … */ optimizer-hint comment that may follow a statement’s first
keyword (10.9.2 Optimizer Hints).
Each hint is written verbatim: the hint language is its own grammar, and
modelling all forty-odd hint names would be a second dialect inside this one.
The handful with a fixed shape have their own mods; everything else goes
through optimizer_hint.
Fields§
§hints: Vec<Cow<'static, str>>The hint bodies, in the order they were added.
Implementations§
Trait Implementations§
Source§impl Expression for Hints
impl Expression for Hints
Auto Trait Implementations§
impl Freeze for Hints
impl RefUnwindSafe for Hints
impl Send for Hints
impl Sync for Hints
impl Unpin for Hints
impl UnsafeUnpin for Hints
impl UnwindSafe for Hints
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