Struct verilogae_util::NonNumericParameter[][src]

pub struct NonNumericParameter {
    pub name: &'static str,
    pub description: &'static str,
    pub unit: &'static str,
    pub group: &'static str,
    pub default: PyObject,
}

Fields

name: &'static strdescription: &'static strunit: &'static strgroup: &'static strdefault: PyObject

Trait Implementations

impl<'a> ExtractExt<'a> for &'a NonNumericParameter[src]

impl<'a> ExtractExt<'a> for &'a mut NonNumericParameter[src]

impl HasMethodsInventory for NonNumericParameter[src]

type Methods = Pyo3MethodsInventoryForNonNumericParameter

impl IntoPy<Py<PyAny>> for NonNumericParameter[src]

impl PyClass for NonNumericParameter[src]

type Dict = PyClassDummySlot

Specify this class has #[pyclass(dict)] or not.

type WeakRef = PyClassDummySlot

Specify this class has #[pyclass(weakref)] or not.

type BaseNativeType = PyAny

The closest native ancestor. This is PyAny by default, and when you declare #[pyclass(extends=PyDict)], it’s PyDict. Read more

impl PyClassAlloc for NonNumericParameter[src]

impl PyClassSend for NonNumericParameter[src]

type ThreadChecker = ThreadCheckerStub<NonNumericParameter>

impl PyProtoMethods for NonNumericParameter[src]

impl PyTypeInfo for NonNumericParameter[src]

type Type = NonNumericParameter

Type of objects to store in PyObject struct

type BaseType = PyAny

Base class

type Layout = PyCell<Self>

Layout

type BaseLayout = PyCellBase<PyAny>

Layout of Basetype.

type Initializer = PyClassInitializer<Self>

Initializer for layout

type AsRefTarget = PyCell<Self>

Utility type to make Py::as_ref work

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> PyErrArguments for T where
    T: IntoPy<Py<PyAny>> + Send + Sync
[src]

impl<T> PyTypeObject for T where
    T: PyTypeInfo
[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.