pub enum TimeunitsDeclaration {
    Timeunit(Box<TimeunitsDeclarationTimeunit>),
    Timeprecision(Box<TimeunitsDeclarationTimeprecision>),
    TimeunitTimeprecision(Box<TimeunitsDeclarationTimeunitTimeprecision>),
    TimeprecisionTimeunit(Box<TimeunitsDeclarationTimeprecisionTimeunit>),
}Variants§
Timeunit(Box<TimeunitsDeclarationTimeunit>)
Timeprecision(Box<TimeunitsDeclarationTimeprecision>)
TimeunitTimeprecision(Box<TimeunitsDeclarationTimeunitTimeprecision>)
TimeprecisionTimeunit(Box<TimeunitsDeclarationTimeprecisionTimeunit>)
Trait Implementations§
Source§impl Clone for TimeunitsDeclaration
 
impl Clone for TimeunitsDeclaration
Source§fn clone(&self) -> TimeunitsDeclaration
 
fn clone(&self) -> TimeunitsDeclaration
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 TimeunitsDeclaration
 
impl Debug for TimeunitsDeclaration
Source§impl<'a> From<&'a TimeunitsDeclaration> for RefNode<'a>
 
impl<'a> From<&'a TimeunitsDeclaration> for RefNode<'a>
Source§fn from(x: &'a TimeunitsDeclaration) -> RefNode<'a>
 
fn from(x: &'a TimeunitsDeclaration) -> RefNode<'a>
Converts to this type from the input type.
Source§impl<'a> From<&'a TimeunitsDeclaration> for RefNodes<'a>
 
impl<'a> From<&'a TimeunitsDeclaration> for RefNodes<'a>
Source§fn from(x: &'a TimeunitsDeclaration) -> RefNodes<'a>
 
fn from(x: &'a TimeunitsDeclaration) -> RefNodes<'a>
Converts to this type from the input type.
Source§impl From<TimeunitsDeclaration> for AnyNode
 
impl From<TimeunitsDeclaration> for AnyNode
Source§fn from(x: TimeunitsDeclaration) -> AnyNode
 
fn from(x: TimeunitsDeclaration) -> AnyNode
Converts to this type from the input type.
Source§impl<'a> IntoIterator for &'a TimeunitsDeclaration
 
impl<'a> IntoIterator for &'a TimeunitsDeclaration
Source§impl PartialEq for TimeunitsDeclaration
 
impl PartialEq for TimeunitsDeclaration
Source§impl<'a> TryFrom<&'a TimeunitsDeclaration> for Locate
 
impl<'a> TryFrom<&'a TimeunitsDeclaration> for Locate
Source§impl TryFrom<AnyNode> for TimeunitsDeclaration
 
impl TryFrom<AnyNode> for TimeunitsDeclaration
Source§impl TryFrom<TimeunitsDeclaration> for Locate
 
impl TryFrom<TimeunitsDeclaration> for Locate
impl StructuralPartialEq for TimeunitsDeclaration
Auto Trait Implementations§
impl Freeze for TimeunitsDeclaration
impl RefUnwindSafe for TimeunitsDeclaration
impl Send for TimeunitsDeclaration
impl Sync for TimeunitsDeclaration
impl Unpin for TimeunitsDeclaration
impl UnwindSafe for TimeunitsDeclaration
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