Struct erg_compiler::ty::codeobj::CodeObj

source ·
pub struct CodeObj {
Show 18 fields pub argcount: u32, pub posonlyargcount: u32, pub kwonlyargcount: u32, pub nlocals: u32, pub stacksize: u32, pub flags: u32, pub code: Vec<u8>, pub consts: Vec<ValueObj>, pub names: Vec<Str>, pub varnames: Vec<Str>, pub freevars: Vec<Str>, pub cellvars: Vec<Str>, pub filename: Str, pub name: Str, pub qualname: Str, pub firstlineno: u32, pub lnotab: Vec<u8>, pub exceptiontable: Vec<u8>,
}
Expand description

Implementation of PyCodeObject, see Include/cpython/code.h in CPython for details.

Fields§

§argcount: u32§posonlyargcount: u32§kwonlyargcount: u32§nlocals: u32§stacksize: u32§flags: u32§code: Vec<u8>§consts: Vec<ValueObj>§names: Vec<Str>§varnames: Vec<Str>§freevars: Vec<Str>§cellvars: Vec<Str>§filename: Str§name: Str§qualname: Str§firstlineno: u32§lnotab: Vec<u8>§exceptiontable: Vec<u8>

Implementations§

source§

impl CodeObj

source

pub fn empty<S: Into<Str>, T: Into<Str>>( params: Vec<Str>, kwonlyargcount: u32, filename: S, name: T, firstlineno: u32, flags: u32 ) -> Self

source

pub fn from_pyc<P: AsRef<Path>>( path: P ) -> DeserializeResult<(Self, PythonVersion)>

source

pub fn from_bytes( v: &mut Vec<u8>, python_ver: PythonVersion ) -> DeserializeResult<Self>

source

pub fn into_bytes(self, python_ver: PythonVersion) -> Vec<u8>

source

pub fn dump_as_pyc<P: AsRef<Path>>( self, path: P, py_magic_num: Option<u32> ) -> Result<()>

source

pub fn into_bytecode(self, py_magic_num: Option<u32>) -> Vec<u8>

source

pub fn into_script(self, py_magic_num: Option<u32>) -> String

Embed bytecode in a Python script. This may generate a huge script, so don’t pass it to python -c, but dump the bytecode and exec it.

source

pub fn exec(self, cfg: &ErgConfig) -> Result<ExitStatus>

source

pub fn code_info(&self, py_ver: Option<PythonVersion>) -> String

Trait Implementations§

source§

impl Clone for CodeObj

source§

fn clone(&self) -> CodeObj

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for CodeObj

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for CodeObj

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl Display for CodeObj

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl From<CodeObj> for ValueObj

source§

fn from(item: CodeObj) -> Self

Converts to this type from the input type.
source§

impl HasType for CodeObj

source§

fn ref_t(&self) -> &Type

source§

fn ref_mut_t(&mut self) -> Option<&mut Type>

source§

fn signature_t(&self) -> Option<&Type>

source§

fn signature_mut_t(&mut self) -> Option<&mut Type>

source§

fn t(&self) -> Type

source§

fn inner_ts(&self) -> Vec<Type>

source§

fn lhs_t(&self) -> &Type

source§

fn rhs_t(&self) -> &Type

source§

impl Hash for CodeObj

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl PartialEq for CodeObj

source§

fn eq(&self, other: &CodeObj) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Eq for CodeObj

source§

impl StructuralPartialEq for CodeObj

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T> ToString for T
where T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.