pub struct CollectNAInt<I>(pub I);Expand description
Write an ExactSizeIterator of Option<i32> directly into an R integer vector with NA.
Tuple Fields§
§0: ITrait Implementations§
Source§impl<I> IntoR for CollectNAInt<I>
impl<I> IntoR for CollectNAInt<I>
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§unsafe fn try_into_sexp_unchecked(self) -> Result<SEXP, Self::Error>
unsafe fn try_into_sexp_unchecked(self) -> Result<SEXP, Self::Error>
Try to convert to SEXP without thread safety checks. Read more
Source§unsafe fn into_sexp_unchecked(self) -> SEXP
unsafe fn into_sexp_unchecked(self) -> SEXP
Convert to SEXP without thread safety checks, panicking on error. Read more
Auto Trait Implementations§
impl<I> Freeze for CollectNAInt<I>where
I: Freeze,
impl<I> RefUnwindSafe for CollectNAInt<I>where
I: RefUnwindSafe,
impl<I> Send for CollectNAInt<I>where
I: Send,
impl<I> Sync for CollectNAInt<I>where
I: Sync,
impl<I> Unpin for CollectNAInt<I>where
I: Unpin,
impl<I> UnsafeUnpin for CollectNAInt<I>where
I: UnsafeUnpin,
impl<I> UnwindSafe for CollectNAInt<I>where
I: 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