pub struct SessionAutopilotObjectiveChangedData {
pub id: Option<i64>,
pub operation: AutopilotObjectiveChangedOperation,
pub status: Option<AutopilotObjectiveChangedStatus>,
}Expand description
Session event “session.autopilot_objective_changed”. Autopilot objective state file operation details indicating what changed
Fields§
§id: Option<i64>Current autopilot objective id, if one exists
operation: AutopilotObjectiveChangedOperationThe type of operation performed on the autopilot objective state file
status: Option<AutopilotObjectiveChangedStatus>Current autopilot objective status, if one exists
Trait Implementations§
Source§impl Clone for SessionAutopilotObjectiveChangedData
impl Clone for SessionAutopilotObjectiveChangedData
Source§fn clone(&self) -> SessionAutopilotObjectiveChangedData
fn clone(&self) -> SessionAutopilotObjectiveChangedData
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 Default for SessionAutopilotObjectiveChangedData
impl Default for SessionAutopilotObjectiveChangedData
Source§fn default() -> SessionAutopilotObjectiveChangedData
fn default() -> SessionAutopilotObjectiveChangedData
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SessionAutopilotObjectiveChangedData
impl<'de> Deserialize<'de> for SessionAutopilotObjectiveChangedData
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 SessionAutopilotObjectiveChangedData
impl RefUnwindSafe for SessionAutopilotObjectiveChangedData
impl Send for SessionAutopilotObjectiveChangedData
impl Sync for SessionAutopilotObjectiveChangedData
impl Unpin for SessionAutopilotObjectiveChangedData
impl UnsafeUnpin for SessionAutopilotObjectiveChangedData
impl UnwindSafe for SessionAutopilotObjectiveChangedData
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