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<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§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 ==.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> 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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> SizeEq<MaybeUninit<T>> for T
impl<T> SizeEq<MaybeUninit<T>> for T
type CastFrom = CastSizedExact
Source§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 moreimpl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
impl<T> InvariantsEq<ManuallyDrop<T>> for Twhere
T: ?Sized,
impl<T> InvariantsEq<T> for Twhere
T: ?Sized,
impl<T> InvariantsEq<Unalign<T>> for T
impl<T> InvariantsEq<Wrapping<T>> for T
impl<Src, Dst, A, SV, DV, R> MutationCompatible<Src, A, SV, DV, (BecauseRead, R)> for Dst
impl<Src, Dst, A, SV, DV> MutationCompatible<Src, A, SV, DV, BecauseInvariantsEq> for Dstwhere
A: Aliasing,
SV: Validity,
DV: Validity,
Src: TransmuteFrom<Dst, DV, SV> + ?Sized,
Dst: TransmuteFrom<Src, SV, DV> + InvariantsEq<Src> + ?Sized,
impl<T> Read<Exclusive, BecauseExclusive> for Twhere
T: ?Sized,
impl<T> TransmuteFrom<Cell<T>, Valid, Valid> for Twhere
T: ?Sized,
impl<T> TransmuteFrom<ManuallyDrop<T>, Valid, Valid> for Twhere
T: ?Sized,
impl<T> TransmuteFrom<ReadOnly<T>, Valid, Valid> for Twhere
T: ?Sized,
impl<Src, Dst> TransmuteFrom<Src, Initialized, Initialized> for Dst
impl<Src, Dst, V> TransmuteFrom<Src, V, Uninit> for Dst
impl<Src, Dst> TransmuteFrom<Src, Valid, Initialized> for Dst
impl<T> TransmuteFrom<Unalign<T>, Valid, Valid> for T
impl<T> TransmuteFrom<UnsafeCell<T>, Valid, Valid> for Twhere
T: ?Sized,
impl<T> TransmuteFrom<Wrapping<T>, Valid, Valid> for T
impl<Src, Dst, A, SV, DV, C, R> TransmuteFromPtr<Src, A, SV, DV, C, R> for Dstwhere
A: Aliasing,
SV: Validity,
DV: Validity,
C: CastExact<Src, Dst>,
Dst: TransmuteFrom<Src, SV, DV> + TryTransmuteFromPtr<Src, A, SV, DV, C, R> + ?Sized,
Src: ?Sized,
impl<Src, Dst, SV, DV, A, C, R> TryTransmuteFromPtr<Src, A, SV, DV, C, (BecauseMutationCompatible, R)> for Dstwhere
A: Aliasing,
SV: Validity,
DV: Validity,
Src: TransmuteFrom<Dst, DV, SV> + ?Sized,
Dst: MutationCompatible<Src, A, SV, DV, R> + ?Sized,
C: CastExact<Src, Dst>,
Layout§
Note: Unable to compute type layout, possibly due to this type having generic parameters. Layout can only be computed for concrete, fully-instantiated types.