use super::GalaxyElement; default_derive!{ pub struct GalaxyClusterRelationList { elements: Vec } } impl From> for GalaxyClusterRelationList { fn from(value: Vec) -> Self { GalaxyClusterRelationList { elements: value } } } impl Into> for GalaxyClusterRelationList { fn into(self) -> Vec { self.elements } } #[test] fn valid1() { todo!() }