[−][src]Enum rustpython_bytecode::bytecode::Instruction
A Single bytecode instruction.
Variants
ImportFields of Import
ImportStarFields of ImportStar
LoadNameFields of LoadName
StoreNameFields of StoreName
DeleteNameFields of DeleteName
name: StringStoreSubscriptDeleteSubscriptStoreAttrFields of StoreAttr
name: StringDeleteAttrFields of DeleteAttr
name: StringLoadConstFields of LoadConst
value: ConstantUnaryOperationFields of UnaryOperation
op: UnaryOperatorBinaryOperationFields of BinaryOperation
op: BinaryOperatorinplace: boolLoadAttrFields of LoadAttr
name: StringCompareOperationFields of CompareOperation
PopRotateFields of Rotate
amount: usizeDuplicateGetIterPassContinueBreakJumpFields of Jump
target: LabelJumpIfFields of JumpIf
target: LabelJumpIfFalseFields of JumpIfFalse
target: LabelMakeFunctionFields of MakeFunction
flags: FunctionOpArgCallFunctionFields of CallFunction
typ: CallTypeForIterFields of ForIter
target: LabelReturnValueYieldValueYieldFromSetupLoopFields of SetupLoop
SetupExceptFields of SetupExcept
handler: LabelSetupWithFields of SetupWith
end: LabelCleanupWithFields of CleanupWith
end: LabelPopBlockRaiseFields of Raise
argc: usizeBuildStringFields of BuildString
size: usizeBuildTupleFields of BuildTuple
BuildListFields of BuildList
BuildSetFields of BuildSet
BuildMapFields of BuildMap
BuildSliceFields of BuildSlice
size: usizeListAppendFields of ListAppend
i: usizeSetAddFields of SetAdd
i: usizeMapAddFields of MapAdd
i: usizePrintExprLoadBuildClassUnpackSequenceFields of UnpackSequence
size: usizeUnpackExFields of UnpackEx
UnpackFormatValueFields of FormatValue
conversion: Option<ConversionFlag>spec: StringPopExceptionTrait Implementations
impl PartialEq<Instruction> for Instruction[src]
fn eq(&self, other: &Instruction) -> bool[src]
fn ne(&self, other: &Instruction) -> bool[src]
impl Clone for Instruction[src]
fn clone(&self) -> Instruction[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more
impl Debug for Instruction[src]
impl Serialize for Instruction[src]
fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error> where
__S: Serializer, [src]
__S: Serializer,
impl<'de> Deserialize<'de> for Instruction[src]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>, [src]
__D: Deserializer<'de>,
Auto Trait Implementations
impl Sync for Instruction
impl Send for Instruction
impl Unpin for Instruction
impl RefUnwindSafe for Instruction
impl UnwindSafe for Instruction
Blanket Implementations
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> From<T> for T[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> DeserializeOwned for T where
T: Deserialize<'de>, [src]
T: Deserialize<'de>,