pub enum Ty<A> {
}
Variants§
I64
I128
AnyBits
Bits(u32)
Unit
Bool
Bit
String
Real
Enum(A)
Struct(A)
Union(A)
Vector(Box<Ty<A>>)
FixedVector(u32, Box<Ty<A>>)
List(Box<Ty<A>>)
Ref(Box<Ty<A>>)
Trait Implementations§
Source§impl<'de, A> Deserialize<'de> for Ty<A>where
A: Deserialize<'de>,
impl<'de, A> Deserialize<'de> for Ty<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 Ty<A>where
A: Freeze,
impl<A> RefUnwindSafe for Ty<A>where
A: RefUnwindSafe,
impl<A> Send for Ty<A>where
A: Send,
impl<A> Sync for Ty<A>where
A: Sync,
impl<A> Unpin for Ty<A>where
A: Unpin,
impl<A> UnwindSafe for Ty<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