pub trait AttitudeEstimate {
// Required methods
fn q(&self) -> [f32; 4];
fn q_dot(&self) -> [f32; 4];
fn is_healthy(&self) -> bool;
}pub trait AttitudeEstimate {
// Required methods
fn q(&self) -> [f32; 4];
fn q_dot(&self) -> [f32; 4];
fn is_healthy(&self) -> bool;
}