pub enum MsSqlTypeParameter {
Number(u16),
Max,
}
Variants§
Trait Implementations§
source§impl Clone for MsSqlTypeParameter
impl Clone for MsSqlTypeParameter
source§fn clone(&self) -> MsSqlTypeParameter
fn clone(&self) -> MsSqlTypeParameter
Returns a copy 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 MsSqlTypeParameter
impl Debug for MsSqlTypeParameter
source§impl Display for MsSqlTypeParameter
impl Display for MsSqlTypeParameter
source§impl NativeTypeArguments for MsSqlTypeParameter
impl NativeTypeArguments for MsSqlTypeParameter
const DESCRIPTION: &'static str = "an integer or `Max`"
const OPTIONAL_ARGUMENTS_COUNT: usize = 0usize
const REQUIRED_ARGUMENTS_COUNT: usize = 1usize
fn from_parts(parts: &[String]) -> Option<MsSqlTypeParameter>
fn to_parts(&self) -> Vec<String>
source§impl PartialEq for MsSqlTypeParameter
impl PartialEq for MsSqlTypeParameter
source§fn eq(&self, other: &MsSqlTypeParameter) -> bool
fn eq(&self, other: &MsSqlTypeParameter) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for MsSqlTypeParameter
impl StructuralPartialEq for MsSqlTypeParameter
Auto Trait Implementations§
impl RefUnwindSafe for MsSqlTypeParameter
impl Send for MsSqlTypeParameter
impl Sync for MsSqlTypeParameter
impl Unpin for MsSqlTypeParameter
impl UnwindSafe for MsSqlTypeParameter
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