pub struct MotorSnapshotResponse {
pub burst_num: u64,
pub timestamp_ms: i64,
pub has_data: bool,
pub total_areas: usize,
pub total_neurons: usize,
pub areas: Vec<MotorTapArea>,
pub agents: Vec<MotorTapAgent>,
}Expand description
Response payload for GET /v1/output/motor_snapshot/last.
Fields§
§burst_num: u64Burst counter when the area snapshot was captured. Zero if no motor activity has been recorded since FEAGI started.
timestamp_ms: i64Wall-clock millisecond timestamp when the snapshot was captured.
has_data: boolConvenience flag for clients - true when at least one area was captured.
total_areas: usizeTotal motor cortical areas seen this burst (before per-agent filtering).
total_neurons: usizeTotal firing neurons across all motor areas this burst.
areas: Vec<MotorTapArea>Per-area activity, ordered as captured by the burst loop.
agents: Vec<MotorTapAgent>Per-agent publish summary. Empty when no agents have published since FEAGI start.
Trait Implementations§
Source§impl Clone for MotorSnapshotResponse
impl Clone for MotorSnapshotResponse
Source§fn clone(&self) -> MotorSnapshotResponse
fn clone(&self) -> MotorSnapshotResponse
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for MotorSnapshotResponse
impl Debug for MotorSnapshotResponse
Source§impl Serialize for MotorSnapshotResponse
impl Serialize for MotorSnapshotResponse
Auto Trait Implementations§
impl Freeze for MotorSnapshotResponse
impl RefUnwindSafe for MotorSnapshotResponse
impl Send for MotorSnapshotResponse
impl Sync for MotorSnapshotResponse
impl Unpin for MotorSnapshotResponse
impl UnsafeUnpin for MotorSnapshotResponse
impl UnwindSafe for MotorSnapshotResponse
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<A, B, T> HttpServerConnExec<A, B> for Twhere
B: Body,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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