Struct python_ast::tree::class_def::ClassDef
source · pub struct ClassDef {
pub name: String,
pub bases: Vec<Name>,
pub keywords: Vec<String>,
pub body: Vec<Statement>,
}
Fields§
§name: String
§bases: Vec<Name>
§keywords: Vec<String>
§body: Vec<Statement>
Trait Implementations§
source§impl CodeGen for ClassDef
impl CodeGen for ClassDef
§type Context = CodeGenContext
type Context = CodeGenContext
A type, generally an enum, that passes the code generator the context of the node.
§type Options = PythonOptions
type Options = PythonOptions
A struct representing the set of compilation options.
§type SymbolTable = SymbolTableScopes
type SymbolTable = SymbolTableScopes
A trait for a symbol table
source§fn find_symbols(self, symbols: Self::SymbolTable) -> Self::SymbolTable
fn find_symbols(self, symbols: Self::SymbolTable) -> Self::SymbolTable
A default implementation for find_symbols(), which simply returns the input.
Language nodes that modify the symbol table should override this method.
source§fn to_rust(
self,
_ctx: Self::Context,
options: Self::Options,
symbols: Self::SymbolTable
) -> Result<TokenStream, Box<dyn Error>>
fn to_rust( self, _ctx: Self::Context, options: Self::Options, symbols: Self::SymbolTable ) -> Result<TokenStream, Box<dyn Error>>
A trait method to output Rust code in a general sense. The output should be stream of Rust tokens,
however, it is not guaranteed that it will fully compile because of scoping errors and other checks
that don’t occur until later.
source§fn get_docstring(&self) -> Option<String>
fn get_docstring(&self) -> Option<String>
A trait method for extracting a docstring from an object that can have a docstring.
source§impl<'de> Deserialize<'de> for ClassDef
impl<'de> Deserialize<'de> for ClassDef
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl<'source> FromPyObject<'source> for ClassDef
impl<'source> FromPyObject<'source> for ClassDef
source§impl PartialEq for ClassDef
impl PartialEq for ClassDef
impl StructuralPartialEq for ClassDef
Auto Trait Implementations§
impl RefUnwindSafe for ClassDef
impl Send for ClassDef
impl Sync for ClassDef
impl Unpin for ClassDef
impl UnwindSafe for ClassDef
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