pub enum PaxAny {
Builtin(PaxValue),
Any(Box<dyn Any>),
}Expand description
This type serves a similar purpose as Box
Variants§
Implementations§
Trait Implementations§
Source§impl PartialOrd for PaxAny
impl PartialOrd for PaxAny
Auto Trait Implementations§
impl !RefUnwindSafe for PaxAny
impl !Send for PaxAny
impl !Sync for PaxAny
impl !UnwindSafe for PaxAny
impl Freeze for PaxAny
impl Unpin for PaxAny
impl UnsafeUnpin for PaxAny
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
Source§impl<T, U> RoundInto<U> for Twhere
U: RoundFrom<T>,
impl<T, U> RoundInto<U> for Twhere
U: RoundFrom<T>,
Source§fn round_into(self) -> U
fn round_into(self) -> U
Performs the conversion.