pub struct PythonCompositionOutput {
pub name: String,
pub module_name: String,
pub pyproject_toml: String,
pub init_py: String,
pub live_stacks: Vec<PythonAliasedStackOutput>,
}Fields§
§name: String§module_name: StringRoot import package name for write_python_composition_package.
pyproject_toml: String§init_py: String§live_stacks: Vec<PythonAliasedStackOutput>Trait Implementations§
Source§impl Clone for PythonCompositionOutput
impl Clone for PythonCompositionOutput
Source§fn clone(&self) -> PythonCompositionOutput
fn clone(&self) -> PythonCompositionOutput
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 PythonCompositionOutput
impl RefUnwindSafe for PythonCompositionOutput
impl Send for PythonCompositionOutput
impl Sync for PythonCompositionOutput
impl Unpin for PythonCompositionOutput
impl UnsafeUnpin for PythonCompositionOutput
impl UnwindSafe for PythonCompositionOutput
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