pub trait BackendRowExt {
// Required method
fn parse_rfc3339(&self, index: usize) -> Option<Timestamp>;
}Expand description
Additional parsing operations for database backend rows.
Required Methods§
Sourcefn parse_rfc3339(&self, index: usize) -> Option<Timestamp>
fn parse_rfc3339(&self, index: usize) -> Option<Timestamp>
Parse an RFC 3339 timestamp from the column at index.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".