pub enum Exp<A> {
}
Variants§
Id(A)
Ref(A)
Bool(bool)
Bits(B64)
String(String)
Unit
I64(i64)
I128(i128)
Undefined(Ty<A>)
Struct(A, Vec<(A, Exp<A>)>)
Kind(A, Box<Exp<A>>)
Unwrap(A, Box<Exp<A>>)
Field(Box<Exp<A>>, A)
Call(Op, Vec<Exp<A>>)
Implementations§
Trait Implementations§
Source§impl<'de, A> Deserialize<'de> for Exp<A>where
A: Deserialize<'de>,
impl<'de, A> Deserialize<'de> for Exp<A>where
A: Deserialize<'de>,
Source§fn 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
Auto Trait Implementations§
impl<A> Freeze for Exp<A>where
A: Freeze,
impl<A> RefUnwindSafe for Exp<A>where
A: RefUnwindSafe,
impl<A> Send for Exp<A>where
A: Send,
impl<A> Sync for Exp<A>where
A: Sync,
impl<A> Unpin for Exp<A>where
A: Unpin,
impl<A> UnwindSafe for Exp<A>where
A: UnwindSafe,
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