pub struct WaitForStatement {
pub wait_type: WaitForType,
pub expr: Expr,
}Expand description
MSSQL WAITFOR statement.
See: https://learn.microsoft.com/en-us/sql/t-sql/language-elements/waitfor-transact-sql
Fields§
§wait_type: WaitForTypeDELAY or TIME.
expr: ExprThe time expression.
Trait Implementations§
Source§impl Clone for WaitForStatement
impl Clone for WaitForStatement
Source§fn clone(&self) -> WaitForStatement
fn clone(&self) -> WaitForStatement
Returns a duplicate of the value. Read more
1.0.0 · 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 WaitForStatement
impl Debug for WaitForStatement
Source§impl<'de> Deserialize<'de> for WaitForStatement
impl<'de> Deserialize<'de> for WaitForStatement
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Display for WaitForStatement
impl Display for WaitForStatement
Source§impl Hash for WaitForStatement
impl Hash for WaitForStatement
Source§impl Ord for WaitForStatement
impl Ord for WaitForStatement
Source§fn cmp(&self, other: &WaitForStatement) -> Ordering
fn cmp(&self, other: &WaitForStatement) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for WaitForStatement
impl PartialEq for WaitForStatement
Source§impl PartialOrd for WaitForStatement
impl PartialOrd for WaitForStatement
Source§impl Serialize for WaitForStatement
impl Serialize for WaitForStatement
Source§impl Visit for WaitForStatement
impl Visit for WaitForStatement
Source§impl VisitMut for WaitForStatement
impl VisitMut for WaitForStatement
Source§fn visit<V: VisitorMut>(&mut self, visitor: &mut V) -> ControlFlow<V::Break>
fn visit<V: VisitorMut>(&mut self, visitor: &mut V) -> ControlFlow<V::Break>
Mutably visit this node with the provided
VisitorMut. Read moreimpl Eq for WaitForStatement
impl StructuralPartialEq for WaitForStatement
Auto Trait Implementations§
impl Freeze for WaitForStatement
impl RefUnwindSafe for WaitForStatement
impl Send for WaitForStatement
impl Sync for WaitForStatement
impl Unpin for WaitForStatement
impl UnsafeUnpin for WaitForStatement
impl UnwindSafe for WaitForStatement
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