#[non_exhaustive]pub enum RValue {
Null,
Logical(Vec<Option<bool>>),
Integer(Vec<Option<i32>>),
Real(Vec<Option<f64>>),
Character(Vec<RStr>),
List(Vec<RObject>),
Symbol(Symbol),
Persisted(Persisted),
Environment(EnvHandle),
}Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
Null
Logical(Vec<Option<bool>>)
Integer(Vec<Option<i32>>)
Real(Vec<Option<f64>>)
Character(Vec<RStr>)
List(Vec<RObject>)
Symbol(Symbol)
Persisted(Persisted)
Environment(EnvHandle)
Trait Implementations§
impl StructuralPartialEq for RValue
Auto Trait Implementations§
impl Freeze for RValue
impl RefUnwindSafe for RValue
impl Send for RValue
impl Sync for RValue
impl Unpin for RValue
impl UnsafeUnpin for RValue
impl UnwindSafe for RValue
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