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 (const: unstable) · 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: Eq> Eq for NamedVector<M>
impl<M: Eq> Eq for NamedVector<M>
Source§#[doc(hidden)]fn assert_fields_are_eq(&self)
#[doc(hidden)]fn assert_fields_are_eq(&self)
🔬This is a nightly-only experimental API. (
derive_eq_internals)1.0.0 (const: unstable) · Source§#[doc(hidden)]fn assert_receiver_is_total_eq(&self)
#[doc(hidden)]fn assert_receiver_is_total_eq(&self)
👎Deprecated since 1.95.0:
implementation detail of #[derive(Eq)]
Source§impl<M> From<M> for NamedVector<M>
impl<M> From<M> for NamedVector<M>
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<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<M: PartialEq> PartialEq for NamedVector<M>
impl<M: PartialEq> PartialEq for NamedVector<M>
Source§fn eq(&self, other: &NamedVector<M>) -> bool
fn eq(&self, other: &NamedVector<M>) -> bool
Tests for
self and other values to be equal, and is used by ==.impl<M: PartialEq> StructuralPartialEq for NamedVector<M>
Source§impl<V: AtomicElement> TryFromSexp for NamedVector<HashMap<String, V>>
impl<V: AtomicElement> TryFromSexp for NamedVector<HashMap<String, V>>
Source§impl<V: AtomicElement> TryFromSexp for NamedVector<BTreeMap<String, V>>
impl<V: AtomicElement> TryFromSexp for NamedVector<BTreeMap<String, V>>
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> SizeHint for Twhere
T: ?Sized,
impl<T> SizeHint for Twhere
T: ?Sized,
Source§default fn lower_bound(&self) -> usize
default fn lower_bound(&self) -> usize
🔬This is a nightly-only experimental API. (
core_io_internals)Returns a lower bound on the number of elements this container-like item
contains.
For example, an array
[u8; 12] could return any value between 0 and
12 inclusively as a correct implementation. Read moreSource§impl<T> SizedTypeProperties for T
impl<T> SizedTypeProperties for T
Source§#[doc(hidden)]const SIZE: usize = _
#[doc(hidden)]const SIZE: usize = _
🔬This is a nightly-only experimental API. (
sized_type_properties)Source§#[doc(hidden)]const ALIGN: usize = _
#[doc(hidden)]const ALIGN: usize = _
🔬This is a nightly-only experimental API. (
sized_type_properties)Source§#[doc(hidden)]const ALIGNMENT: Alignment = _
#[doc(hidden)]const ALIGNMENT: Alignment = _
🔬This is a nightly-only experimental API. (
ptr_alignment_type)Source§#[doc(hidden)]const IS_ZST: bool = _
#[doc(hidden)]const IS_ZST: bool = _
🔬This is a nightly-only experimental API. (
sized_type_properties)Source§#[doc(hidden)]const LAYOUT: Layout = _
#[doc(hidden)]const LAYOUT: Layout = _
🔬This is a nightly-only experimental API. (
sized_type_properties)Source§#[doc(hidden)]const MAX_SLICE_LEN: usize = _
#[doc(hidden)]const MAX_SLICE_LEN: usize = _
🔬This is a nightly-only experimental API. (
sized_type_properties)The largest safe length for a
[Self]. Read moreLayout§
Note: Unable to compute type layout, possibly due to this type having generic parameters. Layout can only be computed for concrete, fully-instantiated types.