pub struct PythonProgramOutput {
pub module_name: String,
pub pyproject_toml: String,
pub init_py: String,
pub models_py: String,
pub programs_py: String,
}Expand description
Python output for a standalone program SDK. It intentionally omits the
live-only views.py module and any synthetic StackDef binding.
Fields§
§module_name: String§pyproject_toml: String§init_py: String§models_py: String§programs_py: StringTrait Implementations§
Source§impl Clone for PythonProgramOutput
impl Clone for PythonProgramOutput
Source§fn clone(&self) -> PythonProgramOutput
fn clone(&self) -> PythonProgramOutput
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for PythonProgramOutput
impl RefUnwindSafe for PythonProgramOutput
impl Send for PythonProgramOutput
impl Sync for PythonProgramOutput
impl Unpin for PythonProgramOutput
impl UnsafeUnpin for PythonProgramOutput
impl UnwindSafe for PythonProgramOutput
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