pub struct ArrayTrajectory { /* private fields */ }Expand description
Eager trajectory: all models held in memory.
All frames must share the same Arc<AtomicHierarchy> (verified on
construction). This invariant ensures that topology does not vary across
frames, which is required for correct trajectory analysis.
Implementations§
Source§impl ArrayTrajectory
impl ArrayTrajectory
Trait Implementations§
Source§impl Trajectory for ArrayTrajectory
impl Trajectory for ArrayTrajectory
Source§fn frame_count(&self) -> usize
fn frame_count(&self) -> usize
Total number of frames in the trajectory.
Source§fn representative(&self) -> &Model
fn representative(&self) -> &Model
A representative frame (typically the first), useful when callers need
topology access without specifying a frame index.
Auto Trait Implementations§
impl Freeze for ArrayTrajectory
impl RefUnwindSafe for ArrayTrajectory
impl Send for ArrayTrajectory
impl Sync for ArrayTrajectory
impl Unpin for ArrayTrajectory
impl UnsafeUnpin for ArrayTrajectory
impl UnwindSafe for ArrayTrajectory
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more