pub struct ShowYield {
pub star: bool,
pub items: Vec<YieldItem>,
pub order: Vec<SortItem>,
pub skip: Option<Expr>,
pub limit: Option<Expr>,
pub span: Span,
}Fields§
§star: boolYIELD * — pass every catalog column through unchanged.
items: Vec<YieldItem>YIELD a, b AS x items (empty when star is true).
order: Vec<SortItem>§skip: Option<Expr>§limit: Option<Expr>§span: SpanTrait Implementations§
Auto Trait Implementations§
impl Freeze for ShowYield
impl RefUnwindSafe for ShowYield
impl Send for ShowYield
impl Sync for ShowYield
impl Unpin for ShowYield
impl UnsafeUnpin for ShowYield
impl UnwindSafe for ShowYield
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