pub type CopyInputField = Option<String>;Expand description
One decoded COPY field. None is SQL NULL; strings remain in PostgreSQL’s
textual input representation so the target column’s normal input coercion
remains authoritative.
Aliased Type§
pub enum CopyInputField {
None,
Some(String),
}