Struct rutie::AnyException[][src]

pub struct AnyException { /* fields omitted */ }

Methods from Deref<Target = Value>

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

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

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

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

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

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

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

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

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

pub fn ty(&self) -> ValueType[src]

Trait Implementations

impl AsRef<AnyException> for AnyException[src]

impl AsRef<Value> for AnyException[src]

impl Borrow<Value> for AnyException[src]

impl Debug for AnyException[src]

impl Deref for AnyException[src]

type Target = Value

The resulting type after dereferencing.

impl Display for AnyException[src]

impl Exception for AnyException[src]

impl From<Value> for AnyException[src]

impl Into<AnyObject> for AnyException[src]

impl Into<Value> for AnyException[src]

impl Object for AnyException[src]

impl PartialEq<AnyException> for AnyException[src]

impl TryConvert<AnyObject> for AnyException[src]

type Nil = NilClass

The type returned in the event of a conversion error.

impl VerifiedObject for AnyException[src]

Auto Trait Implementations

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> ToString for T where
    T: Display + ?Sized
[src]

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.