#[non_exhaustive]#[repr(u32)]pub enum LocalDateTime {
Min = 268_435_456,
}Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Min = 268_435_456
Implementations§
Source§impl LocalDateTime
impl LocalDateTime
Trait Implementations§
Source§impl Clone for LocalDateTime
impl Clone for LocalDateTime
Source§fn clone(&self) -> LocalDateTime
fn clone(&self) -> LocalDateTime
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 Debug for LocalDateTime
impl Debug for LocalDateTime
Source§impl Hash for LocalDateTime
impl Hash for LocalDateTime
Source§impl PartialEq for LocalDateTime
impl PartialEq for LocalDateTime
Source§fn eq(&self, other: &LocalDateTime) -> bool
fn eq(&self, other: &LocalDateTime) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for LocalDateTime
impl Eq for LocalDateTime
impl StructuralPartialEq for LocalDateTime
Auto Trait Implementations§
impl Freeze for LocalDateTime
impl RefUnwindSafe for LocalDateTime
impl Send for LocalDateTime
impl Sync for LocalDateTime
impl Unpin for LocalDateTime
impl UnsafeUnpin for LocalDateTime
impl UnwindSafe for LocalDateTime
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