Skip to main content

CopyInputField

Type Alias CopyInputField 

Source
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),
}

Variants§

§1.0.0

None

No value.

§1.0.0

Some(String)

Some value of type T.