Struct liquid_core::model::DateTime  
source · [−]#[repr(transparent)]pub struct DateTime { /* private fields */ }Expand description
Liquid’s native date + time type.
Implementations
sourceimpl DateTime
 
impl DateTime
sourcepub fn with_offset(self, offset: UtcOffset) -> Self
 
pub fn with_offset(self, offset: UtcOffset) -> Self
Changes the associated time zone. This does not change the actual DateTime (but will change the string representation).
Methods from Deref<Target = OffsetDateTime>
pub const UNIX_EPOCH: OffsetDateTime
Trait Implementations
sourceimpl Deref for DateTime
 
impl Deref for DateTime
type Target = OffsetDateTime
type Target = OffsetDateTime
The resulting type after dereferencing.
sourceimpl<'de> Deserialize<'de> for DateTime
 
impl<'de> Deserialize<'de> for DateTime
sourcefn 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
sourceimpl Ord for DateTime
 
impl Ord for DateTime
sourceimpl<'v> PartialEq<DateTime> for ValueViewCmp<'v>
 
impl<'v> PartialEq<DateTime> for ValueViewCmp<'v>
sourceimpl PartialOrd<DateTime> for DateTime
 
impl PartialOrd<DateTime> for DateTime
sourcefn partial_cmp(&self, other: &DateTime) -> Option<Ordering>
 
fn partial_cmp(&self, other: &DateTime) -> Option<Ordering>
This method returns an ordering between self and other values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
 
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
 
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self and other) and is used by the <=
operator. Read more
sourceimpl<'s> PartialOrd<DateTime> for ScalarCow<'s>
 
impl<'s> PartialOrd<DateTime> for ScalarCow<'s>
sourcefn partial_cmp(&self, other: &DateTime) -> Option<Ordering>
 
fn partial_cmp(&self, other: &DateTime) -> Option<Ordering>
This method returns an ordering between self and other values if one exists. Read more
1.0.0 · sourcefn lt(&self, other: &Rhs) -> bool
 
fn lt(&self, other: &Rhs) -> bool
This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · sourcefn le(&self, other: &Rhs) -> bool
 
fn le(&self, other: &Rhs) -> bool
This method tests less than or equal to (for self and other) and is used by the <=
operator. Read more
sourceimpl ValueView for DateTime
 
impl ValueView for DateTime
sourcefn render(&self) -> DisplayCow<'_>
 
fn render(&self) -> DisplayCow<'_>
A Display for a BoxedValue rendered for the user.
sourcefn source(&self) -> DisplayCow<'_>
 
fn source(&self) -> DisplayCow<'_>
A Display for a Value as source code.
sourcefn query_state(&self, state: State) -> bool
 
fn query_state(&self, state: State) -> bool
Query the value’s state
sourcefn to_kstr(&self) -> KStringCow<'_>
 
fn to_kstr(&self) -> KStringCow<'_>
Interpret as a string.
sourcefn as_object(&self) -> Option<&dyn ObjectView>
 
fn as_object(&self) -> Option<&dyn ObjectView>
Extracts the object value if it is a object.
impl Copy for DateTime
impl Eq for DateTime
impl StructuralEq for DateTime
impl StructuralPartialEq for DateTime
Auto Trait Implementations
impl RefUnwindSafe for DateTime
impl Send for DateTime
impl Sync for DateTime
impl Unpin for DateTime
impl UnwindSafe for DateTime
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
    T: ?Sized, 
 
impl<T> BorrowMut<T> for T where
    T: ?Sized, 
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
 
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
    T: Clone, 
 
impl<T> ToOwned for T where
    T: Clone, 
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
 
fn clone_into(&self, target: &mut T)
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more