feat: IntoPyObject implementations for arbitrary types

This commit is contained in:
2025-03-15 15:29:40 -04:00
parent 25f1554870
commit 70c2380d0c
4 changed files with 50 additions and 4 deletions

View File

@@ -1,6 +1,7 @@
use pyo3::IntoPyObject;
use snafu::Snafu;
#[derive(Debug, Clone, derive_more::Into)]
#[derive(Debug, Clone, derive_more::Into, IntoPyObject)]
pub struct FiniteF64(f64);
#[derive(Debug, Snafu)]