odbc_api::parameter

Type Alias VarWCharBox

Source
pub type VarWCharBox = VarCell<Box<[u16]>, WideText>;
Expand description

Parameter type for owned, variable sized wide character data.

We use Box<[u16]> rather than Vec<u16> as a buffer type since the indicator pointer already has the role of telling us how many characters in the buffer are part of the payload.

Aliased Typeยง

struct VarWCharBox { /* private fields */ }