orbital-base-components 0.1.1

Headless base primitives for Orbital — structure, semantics, and accessibility
Documentation
1
2
3
4
5
6
7
8
/// Errors from datetime boundary conversion.
#[derive(Clone, Copy, Debug, PartialEq, Eq)]
pub enum DatetimeError {
    /// Unix timestamp is out of the valid chrono range.
    OutOfRange,
    /// Input string or value variant cannot be parsed as a datetime.
    InvalidInput,
}