pub enum TdsPacketType {
SqlBatch = 1,
PreTds7Login = 2,
Rpc = 3,
TabularResult = 4,
AttentionSignal = 6,
BulkLoadData = 7,
FederatedAuthToken = 8,
TransactionManagerRequest = 14,
Tds7Login = 16,
Sspi = 17,
PreLogin = 18,
}Expand description
TDS packet types
Variants§
SqlBatch = 1
PreTds7Login = 2
Rpc = 3
TabularResult = 4
AttentionSignal = 6
BulkLoadData = 7
FederatedAuthToken = 8
TransactionManagerRequest = 14
Tds7Login = 16
Sspi = 17
PreLogin = 18
Trait Implementations§
Source§impl Clone for TdsPacketType
impl Clone for TdsPacketType
Source§fn clone(&self) -> TdsPacketType
fn clone(&self) -> TdsPacketType
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 TdsPacketType
impl Debug for TdsPacketType
Source§impl PartialEq for TdsPacketType
impl PartialEq for TdsPacketType
impl StructuralPartialEq for TdsPacketType
Auto Trait Implementations§
impl Freeze for TdsPacketType
impl RefUnwindSafe for TdsPacketType
impl Send for TdsPacketType
impl Sync for TdsPacketType
impl Unpin for TdsPacketType
impl UnwindSafe for TdsPacketType
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