[−][src]Enum rustpython_vm::bytecode::Constant
pub enum Constant { Integer { value: BigInt, }, Float { value: f64, }, Complex { value: Complex<f64>, }, Boolean { value: bool, }, String { value: String, }, Bytes { value: Vec<u8>, }, Code { code: Box<CodeObject>, }, Tuple { elements: Vec<Constant>, }, None, Ellipsis, }
Variants
Fields of Integer
value: BigInt
Fields of Float
value: f64
Fields of Boolean
value: bool
Fields of String
value: String
Fields of Code
code: Box<CodeObject>
Trait Implementations
impl Clone for Constant
[src][+]
impl Debug for Constant
[src][+]
impl<'de> Deserialize<'de> for Constant
[src][+]
impl Display for Constant
[src][+]
impl PartialEq<Constant> for Constant
[src][+]
impl Serialize for Constant
[src][+]
impl StructuralPartialEq for Constant
[src]
Auto Trait Implementations
impl RefUnwindSafe for Constant
impl Send for Constant
impl Sync for Constant
impl Unpin for Constant
impl UnwindSafe for Constant
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src][+]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> DeserializeOwned for T where
T: Deserialize<'de>,
[src]
T: Deserialize<'de>,
impl<T> From<T> for T
[src][+]
impl<T, U> Into<U> for T where
U: From<T>,
[src][+]
U: From<T>,
impl<T> Same<T> for T
type Output = T
Should always be Self
impl<T> ToOwned for T where
T: Clone,
[src][+]
T: Clone,
impl<T> ToString for T where
T: Display + ?Sized,
[src][+]
T: Display + ?Sized,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src][+]
U: Into<T>,
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src][+]
U: TryFrom<T>,
impl<V, T> VZip<V> for T where
V: MultiLane<T>,
[+]
V: MultiLane<T>,