[−][src]Enum rustpython_vm::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: usizeJumpIfFields of JumpIf
target: usizeJumpIfFalseFields of JumpIfFalse
target: usizeMakeFunctionFields of MakeFunction
flags: FunctionOpArgCallFunctionFields of CallFunction
typ: CallTypeForIterFields of ForIter
target: usizeReturnValueYieldValueYieldFromSetupLoopFields of SetupLoop
SetupExceptFields of SetupExcept
handler: usizeSetupWithFields of SetupWith
end: usizeCleanupWithFields of CleanupWith
end: usizePopBlockRaiseFields 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<'de> Deserialize<'de> for Instruction[src]
fn deserialize<__D>(
__deserializer: __D
) -> Result<Instruction, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>, [src]
__deserializer: __D
) -> Result<Instruction, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>,
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 PartialEq<Instruction> for Instruction[src]
fn eq(&self, other: &Instruction) -> bool[src]
fn ne(&self, other: &Instruction) -> bool[src]
impl Serialize for Instruction[src]
fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error> where
__S: Serializer, [src]
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error> where
__S: Serializer,
impl Debug for Instruction[src]
Auto Trait Implementations
impl Send for Instruction
impl Unpin for Instruction
impl Sync for Instruction
impl UnwindSafe for Instruction
impl RefUnwindSafe 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> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
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>,
impl<T> Same<T> for T
type Output = T
Should always be Self