pub enum TimeLiteral {
    Unsigned(Box<TimeLiteralUnsigned>),
    FixedPoint(Box<TimeLiteralFixedPoint>),
}Variants§
Unsigned(Box<TimeLiteralUnsigned>)
FixedPoint(Box<TimeLiteralFixedPoint>)
Trait Implementations§
Source§impl Clone for TimeLiteral
 
impl Clone for TimeLiteral
Source§fn clone(&self) -> TimeLiteral
 
fn clone(&self) -> TimeLiteral
Returns a duplicate 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 TimeLiteral
 
impl Debug for TimeLiteral
Source§impl<'a> From<&'a TimeLiteral> for RefNode<'a>
 
impl<'a> From<&'a TimeLiteral> for RefNode<'a>
Source§fn from(x: &'a TimeLiteral) -> RefNode<'a>
 
fn from(x: &'a TimeLiteral) -> RefNode<'a>
Converts to this type from the input type.
Source§impl<'a> From<&'a TimeLiteral> for RefNodes<'a>
 
impl<'a> From<&'a TimeLiteral> for RefNodes<'a>
Source§fn from(x: &'a TimeLiteral) -> RefNodes<'a>
 
fn from(x: &'a TimeLiteral) -> RefNodes<'a>
Converts to this type from the input type.
Source§impl From<TimeLiteral> for AnyNode
 
impl From<TimeLiteral> for AnyNode
Source§fn from(x: TimeLiteral) -> AnyNode
 
fn from(x: TimeLiteral) -> AnyNode
Converts to this type from the input type.
Source§impl<'a> IntoIterator for &'a TimeLiteral
 
impl<'a> IntoIterator for &'a TimeLiteral
Source§impl PartialEq for TimeLiteral
 
impl PartialEq for TimeLiteral
Source§impl<'a> TryFrom<&'a TimeLiteral> for Locate
 
impl<'a> TryFrom<&'a TimeLiteral> for Locate
Source§impl TryFrom<AnyNode> for TimeLiteral
 
impl TryFrom<AnyNode> for TimeLiteral
Source§impl TryFrom<TimeLiteral> for Locate
 
impl TryFrom<TimeLiteral> for Locate
impl StructuralPartialEq for TimeLiteral
Auto Trait Implementations§
impl Freeze for TimeLiteral
impl RefUnwindSafe for TimeLiteral
impl Send for TimeLiteral
impl Sync for TimeLiteral
impl Unpin for TimeLiteral
impl UnwindSafe for TimeLiteral
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