#[non_exhaustive]pub enum Edn<'e> {
}
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Vector(Vec<Edn<'e>>)
Set(BTreeSet<Edn<'e>>)
Map(BTreeMap<Edn<'e>, Edn<'e>>)
List(Vec<Edn<'e>>)
Key(&'e str)
Symbol(&'e str)
Str(&'e str)
Int(i64)
Tagged(&'e str, Box<Edn<'e>>)
Double(OrderedFloat<f64>)
Rational((i64, i64))
Char(char)
Bool(bool)
Nil
Implementations§
Trait Implementations§
Source§impl<'e> Ord for Edn<'e>
impl<'e> Ord for Edn<'e>
Source§impl<'e> PartialOrd for Edn<'e>
impl<'e> PartialOrd for Edn<'e>
impl<'e> Eq for Edn<'e>
impl<'e> StructuralPartialEq for Edn<'e>
Auto Trait Implementations§
impl<'e> Freeze for Edn<'e>
impl<'e> RefUnwindSafe for Edn<'e>
impl<'e> Send for Edn<'e>
impl<'e> Sync for Edn<'e>
impl<'e> Unpin for Edn<'e>
impl<'e> UnwindSafe for Edn<'e>
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