Struct extendr_api::wrapper::Primitive[][src]

pub struct Primitive<'a>(pub &'a str);

Wrapper for creating and reading Primitive functions.

use extendr_api::prelude::*;
test! {
    let robj = r!(Primitive("+"));
    assert!(robj.is_primitive());
    assert!(!r!(Primitive("not_a_primitive")).is_primitive());
}

Trait Implementations

impl<'a> Clone for Primitive<'a>[src]

impl<'a> Debug for Primitive<'a>[src]

impl<'a> From<Primitive<'a>> for Robj[src]

fn from(name: Primitive<'_>) -> Self[src]

Make a primitive object, or NULL if not available.

use extendr_api::prelude::*;
test! {
    let builtin = r!(Primitive("+"));
    let special = r!(Primitive("if"));
}

impl<'a> PartialEq<Primitive<'a>> for Primitive<'a>[src]

impl<'a> StructuralPartialEq for Primitive<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for Primitive<'a>[src]

impl<'a> Send for Primitive<'a>[src]

impl<'a> Sync for Primitive<'a>[src]

impl<'a> Unpin for Primitive<'a>[src]

impl<'a> UnwindSafe for Primitive<'a>[src]

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.