Skip to main content

PythonPackageRoot

Type Alias PythonPackageRoot 

Source
pub type PythonPackageRoot = Option<String>;
Expand description

The top-level Python package name for absolute import resolution. e.g. for marimo, this is “marimo” — so from marimo._runtime.dataflow import X resolves to marimo/_runtime/dataflow.py.

Aliased Type§

pub enum PythonPackageRoot {
    None,
    Some(String),
}

Variants§

§1.0.0

None

No value.

§1.0.0

Some(String)

Some value of type T.