Type Alias odbc_api::parameter::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 */ }