pub struct AsDisplayVec<T>(pub Vec<T>);Expand description
Tuple Fields§
§0: Vec<T>Trait Implementations§
Source§impl<T: Clone> Clone for AsDisplayVec<T>
impl<T: Clone> Clone for AsDisplayVec<T>
Source§fn clone(&self) -> AsDisplayVec<T>
fn clone(&self) -> AsDisplayVec<T>
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<T: Debug> Debug for AsDisplayVec<T>
impl<T: Debug> Debug for AsDisplayVec<T>
Source§impl<T: Display> IntoR for AsDisplayVec<T>
impl<T: Display> IntoR for AsDisplayVec<T>
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
Auto Trait Implementations§
impl<T> Freeze for AsDisplayVec<T>
impl<T> RefUnwindSafe for AsDisplayVec<T>where
T: RefUnwindSafe,
impl<T> Send for AsDisplayVec<T>where
T: Send,
impl<T> Sync for AsDisplayVec<T>where
T: Sync,
impl<T> Unpin for AsDisplayVec<T>where
T: Unpin,
impl<T> UnsafeUnpin for AsDisplayVec<T>
impl<T> UnwindSafe for AsDisplayVec<T>where
T: 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