pub enum ArrayChildren<'tree> {
Array(Box<Array<'tree>>),
Boolean(Box<Boolean<'tree>>),
Float(Box<Float<'tree>>),
InlineTable(Box<InlineTable<'tree>>),
Integer(Box<Integer<'tree>>),
LocalDate(Box<LocalDate<'tree>>),
LocalDateTime(Box<LocalDateTime<'tree>>),
LocalTime(Box<LocalTime<'tree>>),
OffsetDateTime(Box<OffsetDateTime<'tree>>),
String(Box<String<'tree>>),
}Variants§
Array(Box<Array<'tree>>)
Boolean(Box<Boolean<'tree>>)
Float(Box<Float<'tree>>)
InlineTable(Box<InlineTable<'tree>>)
Integer(Box<Integer<'tree>>)
LocalDate(Box<LocalDate<'tree>>)
LocalDateTime(Box<LocalDateTime<'tree>>)
LocalTime(Box<LocalTime<'tree>>)
OffsetDateTime(Box<OffsetDateTime<'tree>>)
String(Box<String<'tree>>)
Trait Implementations§
Source§impl<'tree> Clone for ArrayChildren<'tree>
impl<'tree> Clone for ArrayChildren<'tree>
Source§fn clone(&self) -> ArrayChildren<'tree>
fn clone(&self) -> ArrayChildren<'tree>
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<'tree> Debug for ArrayChildren<'tree>
impl<'tree> Debug for ArrayChildren<'tree>
Source§impl<'tree> FromNode<'tree> for ArrayChildren<'tree>
impl<'tree> FromNode<'tree> for ArrayChildren<'tree>
Source§impl<'tree> PartialEq for ArrayChildren<'tree>
impl<'tree> PartialEq for ArrayChildren<'tree>
Source§impl Spanned for ArrayChildren<'_>
impl Spanned for ArrayChildren<'_>
impl<'tree> Eq for ArrayChildren<'tree>
impl<'tree> StructuralPartialEq for ArrayChildren<'tree>
Auto Trait Implementations§
impl<'tree> Freeze for ArrayChildren<'tree>
impl<'tree> RefUnwindSafe for ArrayChildren<'tree>
impl<'tree> Send for ArrayChildren<'tree>
impl<'tree> Sync for ArrayChildren<'tree>
impl<'tree> Unpin for ArrayChildren<'tree>
impl<'tree> UnsafeUnpin for ArrayChildren<'tree>
impl<'tree> UnwindSafe for ArrayChildren<'tree>
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