pub trait ReferenceFrame {
// Required methods
fn name(&self) -> String;
fn abbreviation(&self) -> String;
}Expand description
A reference frame with a human-readable name and abbreviation.
Required Methods§
Sourcefn name(&self) -> String
fn name(&self) -> String
Returns the full name of the frame (e.g. “International Celestial Reference Frame”).
Sourcefn abbreviation(&self) -> String
fn abbreviation(&self) -> String
Returns the abbreviated name (e.g. “ICRF”).