MCPcopy Create free account
hub / github.com/InteractiveComputerGraphics/splashsurf / run_splashsurf_py

Function run_splashsurf_py

pysplashsurf/src/lib.rs:71–79  ·  view source on GitHub ↗
(args: Bound<'py, PyList>)

Source from the content-addressed store, hash-verified

69#[pyfunction]
70#[pyo3(name = "run_splashsurf")]
71fn run_splashsurf_py<'py>(args: Bound<'py, PyList>) -> PyResult<()> {
72 cli::run_splashsurf(args.iter().map(|arg| {
73 arg.cast::<PyString>()
74 .expect("argument wasn't a string")
75 .extract::<String>()
76 .unwrap()
77 }))?;
78 Ok(())
79}
80
81define_stub_info_gatherer!(stub_info);

Callers

nothing calls this directly

Calls 2

run_splashsurfFunction · 0.85
iterMethod · 0.45

Tested by

no test coverage detected