pub enum Special {
None = 0,
Unit = 1,
False = 2,
True = 3,
Named = 4,
DynamicMap = 5,
DynamicEnd = 6,
}
Expand description
A special value type.
Variants§
None = 0
A None value.
Unit = 1
A Unit value.
False = 2
The false
boolean literal.
True = 3
The true
boolean literal.
Named = 4
A named value. A symbol followed by another value.
DynamicMap = 5
A sequence of key-value pairs with an unknown length.
DynamicEnd = 6
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