pub struct TrajectoryCreated {
pub trajectory_id: TrajectoryId,
pub name: String,
pub description: Option<String>,
pub parent_trajectory_id: Option<TrajectoryId>,
pub root_trajectory_id: Option<TrajectoryId>,
pub agent_id: Option<AgentId>,
pub metadata: Option<Value>,
}Expand description
Payload for TRAJECTORY_CREATED events.
Fields§
§trajectory_id: TrajectoryId§name: String§description: Option<String>§parent_trajectory_id: Option<TrajectoryId>§root_trajectory_id: Option<TrajectoryId>§agent_id: Option<AgentId>§metadata: Option<Value>Trait Implementations§
Source§impl Clone for TrajectoryCreated
impl Clone for TrajectoryCreated
Source§fn clone(&self) -> TrajectoryCreated
fn clone(&self) -> TrajectoryCreated
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 TrajectoryCreated
impl Debug for TrajectoryCreated
Source§impl<'de> Deserialize<'de> for TrajectoryCreated
impl<'de> Deserialize<'de> for TrajectoryCreated
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
Source§impl EventPayload for TrajectoryCreated
impl EventPayload for TrajectoryCreated
Auto Trait Implementations§
impl Freeze for TrajectoryCreated
impl RefUnwindSafe for TrajectoryCreated
impl Send for TrajectoryCreated
impl Sync for TrajectoryCreated
impl Unpin for TrajectoryCreated
impl UnwindSafe for TrajectoryCreated
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