#[doc(hidden)] pub fn extract_argument_with_default<'a, 'py, T, const IS_OPTION: bool>(
obj: Option<&'a Bound<'py, PyAny>>,
holder: &'a mut T::Holder,
arg_name: &str,
default: fn() -> T,
) -> PyResult<T>where
T: PyFunctionArgument<'a, 'py, IS_OPTION>,
Expand description
Alternative to extract_argument
used when the argument has a default value provided by an annotation.