pub struct AutoPilotConfigResponse {
pub success: bool,
pub config: AutoPilotConfig,
pub message: String,
}Expand description
PILOT-2: AutoPilot configuration update response
Fields§
§success: bool§config: AutoPilotConfig§message: StringTrait Implementations§
Source§impl Clone for AutoPilotConfigResponse
impl Clone for AutoPilotConfigResponse
Source§fn clone(&self) -> AutoPilotConfigResponse
fn clone(&self) -> AutoPilotConfigResponse
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 AutoPilotConfigResponse
impl Debug for AutoPilotConfigResponse
Source§impl<'de> Deserialize<'de> for AutoPilotConfigResponse
impl<'de> Deserialize<'de> for AutoPilotConfigResponse
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 AutoPilotConfigResponse
impl RefUnwindSafe for AutoPilotConfigResponse
impl Send for AutoPilotConfigResponse
impl Sync for AutoPilotConfigResponse
impl Unpin for AutoPilotConfigResponse
impl UnsafeUnpin for AutoPilotConfigResponse
impl UnwindSafe for AutoPilotConfigResponse
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