1 2 3 4 5 6 7 8 9 10 11 12
use serde::Serialize; use super::{ property::Property, super::traits::transform::Transform }; #[derive(Debug, Clone, Serialize, Default)] pub struct BaseException<T: Transform> { pub property: Box<Property<T>>, pub target_ptr: T, }