pub enum RLiteral {
}Expand description
Literal values in R.
Variants§
Integer(i64)
42L or 42 integer
Numeric(f64)
3.14 numeric
Logical(bool)
TRUE / FALSE
Character(String)
"hello" character
Complex(f64, f64)
1+2i complex
Null
NULL
Na
NA
NaInteger
NA_integer_
NaReal
NA_real_
NaCharacter
NA_character_
NaComplex
NA_complex_
Inf
Inf
NaN
NaN
Trait Implementations§
impl StructuralPartialEq for RLiteral
Auto Trait Implementations§
impl Freeze for RLiteral
impl RefUnwindSafe for RLiteral
impl Send for RLiteral
impl Sync for RLiteral
impl Unpin for RLiteral
impl UnsafeUnpin for RLiteral
impl UnwindSafe for RLiteral
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