pub enum WaitForType {
Delay,
Time,
}Expand description
The type of WAITFOR statement (MSSQL).
See: https://learn.microsoft.com/en-us/sql/t-sql/language-elements/waitfor-transact-sql
Variants§
Trait Implementations§
Source§impl Clone for WaitForType
impl Clone for WaitForType
Source§fn clone(&self) -> WaitForType
fn clone(&self) -> WaitForType
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 WaitForType
impl Debug for WaitForType
Source§impl<'de> Deserialize<'de> for WaitForType
impl<'de> Deserialize<'de> for WaitForType
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 WaitForType
impl Display for WaitForType
Source§impl Hash for WaitForType
impl Hash for WaitForType
Source§impl Ord for WaitForType
impl Ord for WaitForType
Source§fn cmp(&self, other: &WaitForType) -> Ordering
fn cmp(&self, other: &WaitForType) -> 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 WaitForType
impl PartialEq for WaitForType
Source§impl PartialOrd for WaitForType
impl PartialOrd for WaitForType
Source§impl Serialize for WaitForType
impl Serialize for WaitForType
Source§impl Visit for WaitForType
impl Visit for WaitForType
Source§impl VisitMut for WaitForType
impl VisitMut for WaitForType
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 WaitForType
impl StructuralPartialEq for WaitForType
Auto Trait Implementations§
impl Freeze for WaitForType
impl RefUnwindSafe for WaitForType
impl Send for WaitForType
impl Sync for WaitForType
impl Unpin for WaitForType
impl UnsafeUnpin for WaitForType
impl UnwindSafe for WaitForType
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