diff options
| author | Michael Williamson <mike@zwobble.org> | 2026-08-01 09:24:12 +0100 |
|---|---|---|
| committer | Michael Williamson <mike@zwobble.org> | 2026-08-01 09:24:12 +0100 |
| commit | 6b4d2a11537282947dc71a646c168ea1343d6a52 (patch) | |
| tree | 091de7d0a71dda3779a13f14f221a0751552868e /examples/14-transient-0/output/rust/src/gen/data.rs | |
| parent | 4524a8a16574887bfdb0ee66984709c8158470a6 (diff) | |
Support Box in transient-0
Diffstat (limited to 'examples/14-transient-0/output/rust/src/gen/data.rs')
| -rw-r--r-- | examples/14-transient-0/output/rust/src/gen/data.rs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/examples/14-transient-0/output/rust/src/gen/data.rs b/examples/14-transient-0/output/rust/src/gen/data.rs index 77bcbe8..d4847ec 100644 --- a/examples/14-transient-0/output/rust/src/gen/data.rs +++ b/examples/14-transient-0/output/rust/src/gen/data.rs @@ -117,6 +117,11 @@ pub struct StructWithSum { } #[derive(Clone, Debug, Hash, PartialEq)] +pub struct StructWithBox { + pub inner: ::std::boxed::Box::<crate::data::StructWithInt32>, +} + +#[derive(Clone, Debug, Hash, PartialEq)] pub struct StructWithListOfShared { pub inner: ::std::vec::Vec::<::std::sync::Arc::<crate::data::StructWithInt32>>, } |
