enum TupleForm<'a> {
Tuple,
ExternallyTagged(&'a Ident),
Untagged(&'a Ident, TokenStream),
}
Variants§
Tuple
ExternallyTagged(&'a Ident)
Contains a variant name
Untagged(&'a Ident, TokenStream)
Contains a variant name and an intermediate deserializer from which actual deserialization will be performed
Auto Trait Implementations§
impl<'a> Freeze for TupleForm<'a>
impl<'a> RefUnwindSafe for TupleForm<'a>
impl<'a> !Send for TupleForm<'a>
impl<'a> !Sync for TupleForm<'a>
impl<'a> Unpin for TupleForm<'a>
impl<'a> UnwindSafe for TupleForm<'a>
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