pub struct SignalMetadata {
pub trajectory_id: u64,
pub step_count: usize,
pub model_route: Option<String>,
pub tags: HashMap<String, String>,
}Expand description
Metadata for learning signals
Fields§
§trajectory_id: u64Source trajectory ID
step_count: usizeNumber of steps in trajectory
model_route: Option<String>Model route taken
Custom tags
Trait Implementations§
Source§impl Clone for SignalMetadata
impl Clone for SignalMetadata
Source§fn clone(&self) -> SignalMetadata
fn clone(&self) -> SignalMetadata
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 SignalMetadata
impl Debug for SignalMetadata
Source§impl Default for SignalMetadata
impl Default for SignalMetadata
Source§fn default() -> SignalMetadata
fn default() -> SignalMetadata
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SignalMetadata
impl<'de> Deserialize<'de> for SignalMetadata
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for SignalMetadata
impl RefUnwindSafe for SignalMetadata
impl Send for SignalMetadata
impl Sync for SignalMetadata
impl Unpin for SignalMetadata
impl UnwindSafe for SignalMetadata
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