pub trait CoordinateFrame: Sized {
// Required methods
fn to_icrs(&self, epoch: &TT) -> CoordResult<ICRSPosition>;
fn from_icrs(icrs: &ICRSPosition, epoch: &TT) -> CoordResult<Self>;
}Required Methods§
fn to_icrs(&self, epoch: &TT) -> CoordResult<ICRSPosition>
fn from_icrs(icrs: &ICRSPosition, epoch: &TT) -> CoordResult<Self>
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.