pub struct TvpColumnDef {
pub wire_type: TvpWireType,
pub flags: TvpColumnFlags,
}Expand description
TVP column definition for wire encoding.
Fields§
§wire_type: TvpWireTypeColumn type.
flags: TvpColumnFlagsColumn flags.
Implementations§
Source§impl TvpColumnDef
impl TvpColumnDef
Sourcepub const fn new(wire_type: TvpWireType) -> Self
pub const fn new(wire_type: TvpWireType) -> Self
Create a new TVP column definition.
Sourcepub const fn nullable(wire_type: TvpWireType) -> Self
pub const fn nullable(wire_type: TvpWireType) -> Self
Create a nullable TVP column definition.
Trait Implementations§
Source§impl Clone for TvpColumnDef
impl Clone for TvpColumnDef
Source§fn clone(&self) -> TvpColumnDef
fn clone(&self) -> TvpColumnDef
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 moreAuto Trait Implementations§
impl Freeze for TvpColumnDef
impl RefUnwindSafe for TvpColumnDef
impl Send for TvpColumnDef
impl Sync for TvpColumnDef
impl Unpin for TvpColumnDef
impl UnwindSafe for TvpColumnDef
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