| 157 | /// Internal type used only during serialization for `FigDocument` to avoid unnecessary cloning. |
| 158 | #[derive(Debug, Clone)] |
| 159 | struct FigDocumentRef<'a>(&'a AwsDocument); |
| 160 | |
| 161 | impl Serialize for FigDocumentRef<'_> { |
| 162 | fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error> |