pub enum PythonType {
BOOL,
BYTES,
COMPLEX,
DICT,
FLOAT,
INT,
LIST,
NUMPY {
dtype: NumpyDtype,
},
OTHER,
SET,
STRING,
TUPLE,
}Variants§
Trait Implementations§
Source§impl Debug for PythonType
impl Debug for PythonType
Source§impl PartialEq for PythonType
impl PartialEq for PythonType
Source§fn eq(&self, other: &PythonType) -> bool
fn eq(&self, other: &PythonType) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for PythonType
Auto Trait Implementations§
impl Freeze for PythonType
impl RefUnwindSafe for PythonType
impl Send for PythonType
impl Sync for PythonType
impl Unpin for PythonType
impl UnsafeUnpin for PythonType
impl UnwindSafe for PythonType
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more