[][src]Struct mtots::BuiltinExceptions

pub struct BuiltinExceptions {
    pub BaseException: Rc<ExceptionKind>,
    pub Exception: Rc<ExceptionKind>,
    pub RuntimeError: Rc<ExceptionKind>,
    pub NameError: Rc<ExceptionKind>,
    pub TypeError: Rc<ExceptionKind>,
    pub ExpectedTypeError: Rc<ExceptionKind>,
    pub ValueKindError: Rc<ExceptionKind>,
    pub OperandTypeError: Rc<ExceptionKind>,
    pub AttributeError: Rc<ExceptionKind>,
    pub InstanceAttributeError: Rc<ExceptionKind>,
    pub StaticAttributeError: Rc<ExceptionKind>,
    pub KeyError: Rc<ExceptionKind>,
    pub PopFromEmptyCollection: Rc<ExceptionKind>,
    pub AssertionError: Rc<ExceptionKind>,
    pub HashError: Rc<ExceptionKind>,
    pub UnpackError: Rc<ExceptionKind>,
    pub OSError: Rc<ExceptionKind>,
}

Fields

BaseException: Rc<ExceptionKind>Exception: Rc<ExceptionKind>RuntimeError: Rc<ExceptionKind>NameError: Rc<ExceptionKind>TypeError: Rc<ExceptionKind>ExpectedTypeError: Rc<ExceptionKind>ValueKindError: Rc<ExceptionKind>OperandTypeError: Rc<ExceptionKind>AttributeError: Rc<ExceptionKind>InstanceAttributeError: Rc<ExceptionKind>StaticAttributeError: Rc<ExceptionKind>KeyError: Rc<ExceptionKind>PopFromEmptyCollection: Rc<ExceptionKind>AssertionError: Rc<ExceptionKind>HashError: Rc<ExceptionKind>UnpackError: Rc<ExceptionKind>OSError: Rc<ExceptionKind>

Implementations

impl BuiltinExceptions[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, 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.