pub enum DateTimeOpt {
Some(DateTime),
InvalidMissing,
}Variants§
Trait Implementations§
Source§impl Clone for DateTimeOpt
impl Clone for DateTimeOpt
Source§fn clone(&self) -> DateTimeOpt
fn clone(&self) -> DateTimeOpt
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl ContainsUtf8 for DateTimeOpt
impl ContainsUtf8 for DateTimeOpt
fn contains_utf8(&self) -> bool
Source§impl Debug for DateTimeOpt
impl Debug for DateTimeOpt
Source§impl IntoBoundedStatic for DateTimeOpt
impl IntoBoundedStatic for DateTimeOpt
Source§type Static = DateTimeOpt
type Static = DateTimeOpt
The target type is bounded by the
'static lifetime.Source§fn into_static(self) -> Self::Static
fn into_static(self) -> Self::Static
Convert an owned
T into an owned T such that T: 'static.Source§impl PartialEq for DateTimeOpt
impl PartialEq for DateTimeOpt
Source§fn eq(&self, other: &DateTimeOpt) -> bool
fn eq(&self, other: &DateTimeOpt) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for DateTimeOpt
Source§impl ToBoundedStatic for DateTimeOpt
impl ToBoundedStatic for DateTimeOpt
Auto Trait Implementations§
impl Freeze for DateTimeOpt
impl RefUnwindSafe for DateTimeOpt
impl Send for DateTimeOpt
impl Sync for DateTimeOpt
impl Unpin for DateTimeOpt
impl UnsafeUnpin for DateTimeOpt
impl UnwindSafe for DateTimeOpt
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