Struct rustpython_vm::compiler::parser::ast::StmtClassDef
source · pub struct StmtClassDef<R = TextRange> {
pub range: R,
pub name: Identifier,
pub bases: Vec<Expr<R>, Global>,
pub keywords: Vec<Keyword<R>, Global>,
pub body: Vec<Stmt<R>, Global>,
pub decorator_list: Vec<Expr<R>, Global>,
pub type_params: Vec<TypeParam<R>, Global>,
}
Expand description
See also ClassDef
Fields§
§range: R
§name: Identifier
§bases: Vec<Expr<R>, Global>
§keywords: Vec<Keyword<R>, Global>
§body: Vec<Stmt<R>, Global>
§decorator_list: Vec<Expr<R>, Global>
§type_params: Vec<TypeParam<R>, Global>
Trait Implementations§
source§impl<R> Clone for StmtClassDef<R>where
R: Clone,
impl<R> Clone for StmtClassDef<R>where R: Clone,
source§fn clone(&self) -> StmtClassDef<R>
fn clone(&self) -> StmtClassDef<R>
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl<R> Debug for StmtClassDef<R>where
R: Debug,
impl<R> Debug for StmtClassDef<R>where R: Debug,
source§impl<T, U> Foldable<T, U> for StmtClassDef<T>
impl<T, U> Foldable<T, U> for StmtClassDef<T>
source§impl<R> From<StmtClassDef<R>> for Ast<R>
impl<R> From<StmtClassDef<R>> for Ast<R>
source§fn from(payload: StmtClassDef<R>) -> Ast<R>
fn from(payload: StmtClassDef<R>) -> Ast<R>
Converts to this type from the input type.
source§impl<R> From<StmtClassDef<R>> for Stmt<R>
impl<R> From<StmtClassDef<R>> for Stmt<R>
source§fn from(payload: StmtClassDef<R>) -> Stmt<R>
fn from(payload: StmtClassDef<R>) -> Stmt<R>
Converts to this type from the input type.
source§impl Located for StmtClassDef<SourceRange>
impl Located for StmtClassDef<SourceRange>
fn range(&self) -> SourceRange
fn location(&self) -> SourceLocation
fn end_location(&self) -> Option<SourceLocation>
source§impl LocatedMut for StmtClassDef<SourceRange>
impl LocatedMut for StmtClassDef<SourceRange>
fn range_mut(&mut self) -> &mut SourceRange
source§impl<R> Node for StmtClassDef<R>
impl<R> Node for StmtClassDef<R>
source§impl Parse for StmtClassDef<TextRange>
impl Parse for StmtClassDef<TextRange>
fn lex_starts_at( source: &str, offset: TextSize ) -> SoftKeywordTransformer<Lexer<Chars<'_>>>
fn parse_tokens( lxr: impl IntoIterator<Item = Result<(Tok, TextRange), LexicalError>>, source_path: &str ) -> Result<StmtClassDef<TextRange>, BaseError<ParseErrorType>>
fn parse( source: &str, source_path: &str ) -> Result<Self, BaseError<ParseErrorType>>
fn parse_without_path(source: &str) -> Result<Self, BaseError<ParseErrorType>>
fn parse_starts_at( source: &str, source_path: &str, offset: TextSize ) -> Result<Self, BaseError<ParseErrorType>>
source§impl<R> PartialEq<StmtClassDef<R>> for StmtClassDef<R>where
R: PartialEq<R>,
impl<R> PartialEq<StmtClassDef<R>> for StmtClassDef<R>where R: PartialEq<R>,
source§fn eq(&self, other: &StmtClassDef<R>) -> bool
fn eq(&self, other: &StmtClassDef<R>) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Ranged for StmtClassDef<TextRange>
impl Ranged for StmtClassDef<TextRange>
impl<R> StructuralPartialEq for StmtClassDef<R>
Auto Trait Implementations§
impl<R> RefUnwindSafe for StmtClassDef<R>where R: RefUnwindSafe,
impl<R> Send for StmtClassDef<R>where R: Send,
impl<R> Sync for StmtClassDef<R>where R: Sync,
impl<R> Unpin for StmtClassDef<R>where R: Unpin,
impl<R> UnwindSafe for StmtClassDef<R>where R: UnwindSafe,
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