pub enum Special {
None,
Unit,
False,
True,
Named,
DynamicMap,
DynamicEnd,
}
Expand description
A special value type.
Variants§
None
A None value.
Unit
A Unit value.
False
The false
boolean literal.
True
The true
boolean literal.
Named
A named value. A symbol followed by another value.
DynamicMap
A sequence of key-value pairs with an unknown length.
DynamicEnd
A terminal value for a Self::DynamicMap
.
Trait Implementations§
Auto Trait Implementations§
impl RefUnwindSafe for Special
impl Send for Special
impl Sync for Special
impl Unpin for Special
impl UnwindSafe for Special
Blanket Implementations§
§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere T: 'a,
§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere T: 'a,
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