pub struct PythonClassStub {
pub class_def: StmtClassDef,
pub imports: Vec<String>,
}
Expand description
Intermediate representation for Python class stub (for methods)
Fields§
§class_def: StmtClassDef
§imports: Vec<String>
Implementations§
Trait Implementations§
Source§impl TryFrom<PythonClassStub> for PyMethodsInfo
impl TryFrom<PythonClassStub> for PyMethodsInfo
Auto Trait Implementations§
impl Freeze for PythonClassStub
impl RefUnwindSafe for PythonClassStub
impl Send for PythonClassStub
impl Sync for PythonClassStub
impl Unpin for PythonClassStub
impl UnwindSafe for PythonClassStub
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
§impl<T, U> ExactFrom<T> for Uwhere
U: TryFrom<T>,
impl<T, U> ExactFrom<T> for Uwhere
U: TryFrom<T>,
fn exact_from(value: T) -> U
§impl<T, U> ExactInto<U> for Twhere
U: ExactFrom<T>,
impl<T, U> ExactInto<U> for Twhere
U: ExactFrom<T>,
fn exact_into(self) -> U
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more