pub struct NamedVector<M>(pub M);Expand description
Wrapper that converts a map to/from a named atomic R vector instead of a named list.
The inner map must have String keys and values that implement AtomicElement.
§Supported value types
| Rust type | R SEXPTYPE |
|---|---|
i32 | INTSXP |
f64 | REALSXP |
u8 | RAWSXP |
bool | LGLSXP |
String | STRSXP |
Option<i32> | INTSXP (NA = NA_INTEGER) |
Option<f64> | REALSXP (NA = NA_REAL) |
Option<bool> | LGLSXP (NA = NA_LOGICAL) |
Option<String> | STRSXP (NA = NA_character_) |
Tuple Fields§
§0: MImplementations§
Source§impl<M> NamedVector<M>
impl<M> NamedVector<M>
Sourcepub fn into_inner(self) -> M
pub fn into_inner(self) -> M
Unwrap, returning the inner map.
Trait Implementations§
Source§impl<M: Clone> Clone for NamedVector<M>
impl<M: Clone> Clone for NamedVector<M>
Source§fn clone(&self) -> NamedVector<M>
fn clone(&self) -> NamedVector<M>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<M: Debug> Debug for NamedVector<M>
impl<M: Debug> Debug for NamedVector<M>
Source§impl<M> From<M> for NamedVector<M>
impl<M> From<M> for NamedVector<M>
Source§impl<V: AtomicElement> IntoR for NamedVector<BTreeMap<String, V>>
impl<V: AtomicElement> IntoR for NamedVector<BTreeMap<String, V>>
Source§type Error = Infallible
type Error = Infallible
The error type for fallible conversions. Read more
Source§fn try_into_sexp(self) -> Result<SEXP, Self::Error>
fn try_into_sexp(self) -> Result<SEXP, Self::Error>
Try to convert this value to an R SEXP. Read more
Source§impl<V: AtomicElement> IntoR for NamedVector<HashMap<String, V>>
impl<V: AtomicElement> IntoR for NamedVector<HashMap<String, V>>
Source§type Error = Infallible
type Error = Infallible
The error type for fallible conversions. Read more
Source§fn try_into_sexp(self) -> Result<SEXP, Self::Error>
fn try_into_sexp(self) -> Result<SEXP, Self::Error>
Try to convert this value to an R SEXP. Read more
Source§impl<M: PartialEq> PartialEq for NamedVector<M>
impl<M: PartialEq> PartialEq for NamedVector<M>
Source§impl<V: AtomicElement> TryFromSexp for NamedVector<BTreeMap<String, V>>
impl<V: AtomicElement> TryFromSexp for NamedVector<BTreeMap<String, V>>
Source§impl<V: AtomicElement> TryFromSexp for NamedVector<HashMap<String, V>>
impl<V: AtomicElement> TryFromSexp for NamedVector<HashMap<String, V>>
impl<M: Eq> Eq for NamedVector<M>
impl<M> StructuralPartialEq for NamedVector<M>
Auto Trait Implementations§
impl<M> Freeze for NamedVector<M>where
M: Freeze,
impl<M> RefUnwindSafe for NamedVector<M>where
M: RefUnwindSafe,
impl<M> Send for NamedVector<M>where
M: Send,
impl<M> Sync for NamedVector<M>where
M: Sync,
impl<M> Unpin for NamedVector<M>where
M: Unpin,
impl<M> UnsafeUnpin for NamedVector<M>where
M: UnsafeUnpin,
impl<M> UnwindSafe for NamedVector<M>where
M: UnwindSafe,
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