#[non_exhaustive]#[repr(transparent)]pub struct FrontMatterDateTimeValue(pub Timestamp);Tuple Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.0: TimestampMethods from Deref<Target = OffsetDateTime>§
pub const UNIX_EPOCH: OffsetDateTime = _
Trait Implementations§
source§impl Clone for FrontMatterDateTimeValue
impl Clone for FrontMatterDateTimeValue
source§fn clone(&self) -> FrontMatterDateTimeValue
fn clone(&self) -> FrontMatterDateTimeValue
Returns a copy of the value. Read more
1.0.0 · 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 FrontMatterDateTimeValue
impl Debug for FrontMatterDateTimeValue
source§impl Deref for FrontMatterDateTimeValue
impl Deref for FrontMatterDateTimeValue
source§impl DerefMut for FrontMatterDateTimeValue
impl DerefMut for FrontMatterDateTimeValue
source§impl<'de> Deserialize<'de> for FrontMatterDateTimeValue
impl<'de> Deserialize<'de> for FrontMatterDateTimeValue
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl From<FrontMatterDateTimeValue> for FrontMatterValue
impl From<FrontMatterDateTimeValue> for FrontMatterValue
source§fn from(v: FrontMatterDateTimeValue) -> Self
fn from(v: FrontMatterDateTimeValue) -> Self
Converts to this type from the input type.
source§impl FromStr for FrontMatterDateTimeValue
impl FromStr for FrontMatterDateTimeValue
source§impl PartialEq for FrontMatterDateTimeValue
impl PartialEq for FrontMatterDateTimeValue
source§fn eq(&self, other: &FrontMatterDateTimeValue) -> bool
fn eq(&self, other: &FrontMatterDateTimeValue) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl Serialize for FrontMatterDateTimeValue
impl Serialize for FrontMatterDateTimeValue
source§impl TryFrom<&str> for FrontMatterDateTimeValue
impl TryFrom<&str> for FrontMatterDateTimeValue
source§impl TryFrom<Value> for FrontMatterDateTimeValue
impl TryFrom<Value> for FrontMatterDateTimeValue
impl Eq for FrontMatterDateTimeValue
impl StructuralPartialEq for FrontMatterDateTimeValue
Auto Trait Implementations§
impl Freeze for FrontMatterDateTimeValue
impl RefUnwindSafe for FrontMatterDateTimeValue
impl Send for FrontMatterDateTimeValue
impl Sync for FrontMatterDateTimeValue
impl Unpin for FrontMatterDateTimeValue
impl UnwindSafe for FrontMatterDateTimeValue
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