pub struct LiveSelectStmt {
pub table: Option<Spanned<String>>,
}Expand description
LIVE SELECT — subscribes to changes on a table.
Fields§
§table: Option<Spanned<String>>The table subscribed to.
Trait Implementations§
Source§impl Clone for LiveSelectStmt
impl Clone for LiveSelectStmt
Source§fn clone(&self) -> LiveSelectStmt
fn clone(&self) -> LiveSelectStmt
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for LiveSelectStmt
impl Debug for LiveSelectStmt
Source§impl PartialEq for LiveSelectStmt
impl PartialEq for LiveSelectStmt
impl StructuralPartialEq for LiveSelectStmt
Auto Trait Implementations§
impl Freeze for LiveSelectStmt
impl RefUnwindSafe for LiveSelectStmt
impl Send for LiveSelectStmt
impl Sync for LiveSelectStmt
impl Unpin for LiveSelectStmt
impl UnsafeUnpin for LiveSelectStmt
impl UnwindSafe for LiveSelectStmt
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