pub enum Type<C: CustomTypes<S>, S: System<C>> {
Bool,
Number,
Text,
Image,
Audio,
List,
Closure,
Entity,
Native(<C::NativeValue as GetType>::Output),
}
Expand description
The type of a Value
.
Variants§
Trait Implementations§
impl<C: CustomTypes<S>, S: System<C>> Copy for Type<C, S>
impl<C: CustomTypes<S>, S: System<C>> Eq for Type<C, S>
Auto Trait Implementations§
impl<C, S> Freeze for Type<C, S>
impl<C, S> RefUnwindSafe for Type<C, S>
impl<C, S> Send for Type<C, S>
impl<C, S> Sync for Type<C, S>
impl<C, S> Unpin for Type<C, S>
impl<C, S> UnwindSafe for Type<C, S>
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