Struct clojurust::clojure::rust::objects::Object::Object[][src]

pub struct Object {
    pub inner: Option<Arc<dyn IObject>>,
}

Fields

inner: Option<Arc<dyn IObject>>

Implementations

impl<'a> Object where
    Object: IObject + 'a, 
[src]

pub fn new(obj: Option<Arc<dyn IObject>>) -> Object[src]

pub fn null() -> Object[src]

pub fn is_null(&self) -> bool[src]

pub fn isa<T>(&'a self) -> bool where
    T: 'static, 
[src]

pub fn cast<T>(&'a self) -> ObjResult<Arc<T>> where
    T: 'static, 
[src]

pub fn strong_count(&self) -> usize[src]

pub fn call(&self, id: usize, args: &[Object]) -> ObjResult<Object>[src]

pub fn get(&self, id: usize) -> ObjResult<Object>[src]

Trait Implementations

impl Clone for Object[src]

impl Eq for Object[src]

impl From<&'_ str> for Object[src]

&str -> string

impl From<String> for Object[src]

string -> string

impl Hash for Object[src]

impl IObject for Object[src]

SImplementation of protocol IObject for Object.

Functions are applied to the content of Object

impl PartialEq<Object> for Object[src]

Auto Trait Implementations

impl !RefUnwindSafe for Object

impl Send for Object

impl Sync for Object

impl Unpin for Object

impl !UnwindSafe for Object

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<S> CastArc for S where
    S: CastFromSync + ?Sized
[src]

impl<S> CastBox for S where
    S: CastFrom + ?Sized
[src]

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

impl<T> CastFromSync for T where
    T: 'static + Sync + Send
[src]

impl<S> CastMut for S where
    S: CastFrom + ?Sized
[src]

impl<S> CastRc for S where
    S: CastFrom + ?Sized
[src]

impl<S> CastRef for S where
    S: CastFrom + ?Sized
[src]

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

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

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

type Output = T

Should always be Self

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.