pub(crate) struct PyFunctionAttr {
pub(crate) module: Option<String>,
pub(crate) python: Option<LitStr>,
pub(crate) python_overload: Option<LitStr>,
pub(crate) no_default_overload: bool,
}Fields§
§module: Option<String>§python: Option<LitStr>§python_overload: Option<LitStr>§no_default_overload: boolTrait Implementations§
Source§impl Default for PyFunctionAttr
impl Default for PyFunctionAttr
Source§fn default() -> PyFunctionAttr
fn default() -> PyFunctionAttr
Returns the “default value” for a type. Read more
Source§impl Parse for PyFunctionAttr
impl Parse for PyFunctionAttr
fn parse(input: ParseStream<'_>) -> Result<Self>
Auto Trait Implementations§
impl Freeze for PyFunctionAttr
impl RefUnwindSafe for PyFunctionAttr
impl !Send for PyFunctionAttr
impl !Sync for PyFunctionAttr
impl Unpin for PyFunctionAttr
impl UnwindSafe for PyFunctionAttr
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