Struct pyo3_stub_gen::generate::function::FunctionDef
source · pub struct FunctionDef {
pub name: &'static str,
pub args: Vec<Arg>,
pub return: TypeInfo,
pub signature: Option<&'static str>,
pub doc: &'static str,
}
Expand description
Definition of a Python function.
Fields§
§name: &'static str
§args: Vec<Arg>
§return: TypeInfo
§signature: Option<&'static str>
§doc: &'static str
Trait Implementations§
source§impl Clone for FunctionDef
impl Clone for FunctionDef
source§fn clone(&self) -> FunctionDef
fn clone(&self) -> FunctionDef
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 Debug for FunctionDef
impl Debug for FunctionDef
source§impl Display for FunctionDef
impl Display for FunctionDef
source§impl From<&PyFunctionInfo> for FunctionDef
impl From<&PyFunctionInfo> for FunctionDef
source§fn from(info: &PyFunctionInfo) -> Self
fn from(info: &PyFunctionInfo) -> Self
Converts to this type from the input type.
source§impl PartialEq for FunctionDef
impl PartialEq for FunctionDef
source§fn eq(&self, other: &FunctionDef) -> bool
fn eq(&self, other: &FunctionDef) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for FunctionDef
Auto Trait Implementations§
impl Freeze for FunctionDef
impl RefUnwindSafe for FunctionDef
impl Send for FunctionDef
impl Sync for FunctionDef
impl Unpin for FunctionDef
impl UnwindSafe for FunctionDef
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)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