pub struct RFunM<T: SEXPbucket> { /* private fields */ }
Implementations§
Source§impl<T: SEXPbucket> RFunM<T>
impl<T: SEXPbucket> RFunM<T>
pub fn set_sexp<S: ToSEXP>(&mut self, x: S) -> RResult<()>
pub fn from_str_global(x: &str) -> RResult<RFunM<T>>
pub fn from_str<EE: SEXPbucket>(x: &str, env: EnvirM<EE>) -> RResult<RFunM<T>>
pub fn ufrom_str_global(x: &str) -> RFunM<T>
pub fn ufrom_str<EE: SEXPbucket>(x: &str, env: EnvirM<EE>) -> RFunM<T>
pub fn envir<S: SEXPbucket>(&self) -> RResult<EnvirM<S>>
pub fn body(&self) -> SEXP
pub fn eval<D: RNew>(&self, args: &[&dyn Args]) -> RResult<D>
pub fn eval_env<EE: SEXPbucket, D: RNew>( &self, args: &[&dyn Args], envir: EnvirM<EE>, ) -> RResult<D>
Trait Implementations§
Source§impl<T: SEXPbucket> Clone for RFunM<T>
impl<T: SEXPbucket> Clone for RFunM<T>
Source§impl<T: SEXPbucket> Named for RFunM<T>
impl<T: SEXPbucket> Named for RFunM<T>
Source§impl<T: SEXPbucket> NewRObj for RFunM<T>
impl<T: SEXPbucket> NewRObj for RFunM<T>
Source§impl<T: SEXPbucket> RAttribute for RFunM<T>
impl<T: SEXPbucket> RAttribute for RFunM<T>
fn get_attr<D: RNew, S: SEXPbucket, EE: Into<SymbolM<S>>>( &self, name: EE, ) -> RResult<D>
fn set_attr<T: ToSEXP, EE: Into<SymbolM<S>>, S: SEXPbucket>( &self, name: EE, attr: T, )
fn attribute_names(&self) -> Vec<CString>
fn has_attribute(&self, attr: &str) -> bool
fn attributte<D: RNew>(&self) -> RResult<D>
Source§impl<T: SEXPbucket> RSlot for RFunM<T>
impl<T: SEXPbucket> RSlot for RFunM<T>
Source§impl<T: SEXPbucket> Shallow for RFunM<T>
impl<T: SEXPbucket> Shallow for RFunM<T>
Source§impl<T: SEXPbucket> ToSEXP for RFunM<T>
impl<T: SEXPbucket> ToSEXP for RFunM<T>
unsafe fn s(&self) -> SEXP
fn rtype(&self) -> Rtype
unsafe fn t(&self) -> Rtemp
fn print(&self)
fn is_null(&self) -> bool
fn is_object(&self) -> bool
fn is_s4(&self) -> bool
fn is_array(&self) -> bool
fn is_factor(&self) -> bool
fn is_frame(&self) -> bool
fn is_function(&self) -> bool
fn is_integer(&self) -> bool
fn is_language(&self) -> bool
fn is_list(&self) -> bool
fn is_matrix(&self) -> bool
fn is_newlist(&self) -> bool
fn is_number(&self) -> bool
fn is_numeric(&self) -> bool
fn is_pairlist(&self) -> bool
fn is_primitive(&self) -> bool
fn is_ts(&self) -> bool
fn is_userbinop(&self) -> bool
fn is_validstring(&self) -> bool
fn is_validstringf(&self) -> bool
fn is_vector(&self) -> bool
fn is_vectoratomic(&self) -> bool
fn is_vectorlist(&self) -> bool
fn is_vectorizable(&self) -> bool
fn is_ordered(&self) -> bool
fn is_unordered(&self) -> bool
fn is_data_frame(&self) -> bool
Auto Trait Implementations§
impl<T> Freeze for RFunM<T>where
T: Freeze,
impl<T> RefUnwindSafe for RFunM<T>where
T: RefUnwindSafe,
impl<T> Send for RFunM<T>where
T: Send,
impl<T> Sync for RFunM<T>where
T: Sync,
impl<T> Unpin for RFunM<T>where
T: Unpin,
impl<T> UnwindSafe for RFunM<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