pub struct MotorCapability {
pub modality: String,
pub output_count: usize,
pub source_cortical_areas: Vec<String>,
pub unit: Option<MotorUnit>,
pub group: Option<u8>,
pub source_units: Option<Vec<MotorUnitSpec>>,
}Expand description
Motor output capability
Fields§
§modality: StringType of motor (servo, stepper, dc, etc.)
output_count: usizeNumber of motor outputs
source_cortical_areas: Vec<String>Source cortical area IDs
unit: Option<MotorUnit>Semantic unit identifier (preferred).
group: Option<u8>Cortical unit index (group) for the selected unit (preferred).
source_units: Option<Vec<MotorUnitSpec>>Multiple semantic motor unit sources (preferred for multi-OPU agents).
This supports agents that subscribe to multiple motor cortical unit types (e.g., object_segmentation + simple_vision_output + text_english_output).
Trait Implementations§
Source§impl Clone for MotorCapability
impl Clone for MotorCapability
Source§fn clone(&self) -> MotorCapability
fn clone(&self) -> MotorCapability
Returns a duplicate of the value. Read more
1.0.0 · 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 MotorCapability
impl Debug for MotorCapability
Source§impl<'de> Deserialize<'de> for MotorCapability
impl<'de> Deserialize<'de> for MotorCapability
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<MotorCapability, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<MotorCapability, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Serialize for MotorCapability
impl Serialize for MotorCapability
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Auto Trait Implementations§
impl Freeze for MotorCapability
impl RefUnwindSafe for MotorCapability
impl Send for MotorCapability
impl Sync for MotorCapability
impl Unpin for MotorCapability
impl UnwindSafe for MotorCapability
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,
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