pub trait SegmentTrait {
    fn new(o: i32) -> Result<Self, Error>
    where
        Self: Sized
;
fn rotation(&self) -> Option<Quaternion>; }
Expand description

Segment specialization traits

Required methods

Implementors