[][src]Struct pyo3_derive_backend::PyClassArgs

pub struct PyClassArgs {
    pub freelist: Option<Expr>,
    pub name: Option<Expr>,
    pub flags: Vec<Expr>,
    pub base: TypePath,
    pub has_extends: bool,
    pub has_unsendable: bool,
    pub module: Option<LitStr>,
}

The parsed arguments of the pyclass macro

Fields

freelist: Option<Expr>name: Option<Expr>flags: Vec<Expr>base: TypePathhas_extends: boolhas_unsendable: boolmodule: Option<LitStr>

Trait Implementations

impl Default for PyClassArgs[src]

impl Parse for PyClassArgs[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.