pub struct ShowStmt {
pub table: Option<Spanned<String>>,
pub since: Option<Spanned<Expr>>,
}Expand description
SHOW CHANGES FOR TABLE ... — reads a change feed.
Fields§
§table: Option<Spanned<String>>The table whose change feed is read.
since: Option<Spanned<Expr>>SINCE <versionstamp|datetime> — the raw expression.
Trait Implementations§
impl StructuralPartialEq for ShowStmt
Auto Trait Implementations§
impl Freeze for ShowStmt
impl RefUnwindSafe for ShowStmt
impl Send for ShowStmt
impl Sync for ShowStmt
impl Unpin for ShowStmt
impl UnsafeUnpin for ShowStmt
impl UnwindSafe for ShowStmt
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