pub enum Warning {
ContainsEscapeCodes,
Decode(Warning),
Invalid(String),
InvalidType,
}Expand description
The warnings that can happen when parsing or linting a NaiveDate, NaiveTime, or DateTime.
Variants§
ContainsEscapeCodes
The datetime does not need to contain escape codes.
Decode(Warning)
The field at the path could not be decoded.
Invalid(String)
The datetime is not valid.
Timestamps are formatted as a string with a max length of 25 chars. Each timestamp follows RFC 3339, with some additional limitations. All timestamps are expected to be in UTC. The absence of the timezone designator implies a UTC timestamp. Fractional seconds may be used.
§Examples
Example of how timestamps should be formatted in OCPI, other formats/patterns are not allowed:
"2015-06-29T20:39:09Z""2015-06-29T20:39:09""2016-12-29T17:45:09.2Z""2016-12-29T17:45:09.2""2018-01-01T01:08:01.123Z""2018-01-01T01:08:01.123"
InvalidType
The JSON value given is not a string.
Trait Implementations§
Source§impl Ord for Warning
impl Ord for Warning
Source§impl PartialOrd for Warning
impl PartialOrd for Warning
impl Eq for Warning
impl StructuralPartialEq for Warning
Auto Trait Implementations§
impl Freeze for Warning
impl RefUnwindSafe for Warning
impl Send for Warning
impl Sync for Warning
impl Unpin for Warning
impl UnwindSafe for Warning
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more