pub struct PythonFunctionStub {
pub func_def: StmtFunctionDef,
pub imports: Vec<String>,
pub is_async: bool,
pub is_overload: bool,
}Expand description
Intermediate representation for Python function stub
Fields§
§func_def: StmtFunctionDef§imports: Vec<String>§is_async: bool§is_overload: boolTrait Implementations§
Source§impl TryFrom<PythonFunctionStub> for PyFunctionInfo
impl TryFrom<PythonFunctionStub> for PyFunctionInfo
Auto Trait Implementations§
impl Freeze for PythonFunctionStub
impl RefUnwindSafe for PythonFunctionStub
impl Send for PythonFunctionStub
impl Sync for PythonFunctionStub
impl Unpin for PythonFunctionStub
impl UnwindSafe for PythonFunctionStub
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