pub struct CreateShipSystemScanResponse {
pub data: CreateShipSystemScanResponseData,
}Expand description
Successfully scanned for nearby systems.
JSON schema
{
"description": "Successfully scanned for nearby systems.",
"type": "object",
"required": [
"data"
],
"properties": {
"data": {
"type": "object",
"required": [
"cooldown",
"systems"
],
"properties": {
"cooldown": {
"$ref": "#/components/schemas/Cooldown"
},
"systems": {
"description": "List of scanned systems.",
"type": "array",
"items": {
"$ref": "#/components/schemas/ScannedSystem"
}
}
}
}
}
}Fields§
§data: CreateShipSystemScanResponseDataTrait Implementations§
Source§impl Clone for CreateShipSystemScanResponse
impl Clone for CreateShipSystemScanResponse
Source§fn clone(&self) -> CreateShipSystemScanResponse
fn clone(&self) -> CreateShipSystemScanResponse
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 Debug for CreateShipSystemScanResponse
impl Debug for CreateShipSystemScanResponse
Source§impl<'de> Deserialize<'de> for CreateShipSystemScanResponse
impl<'de> Deserialize<'de> for CreateShipSystemScanResponse
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 CreateShipSystemScanResponse
impl RefUnwindSafe for CreateShipSystemScanResponse
impl Send for CreateShipSystemScanResponse
impl Sync for CreateShipSystemScanResponse
impl Unpin for CreateShipSystemScanResponse
impl UnsafeUnpin for CreateShipSystemScanResponse
impl UnwindSafe for CreateShipSystemScanResponse
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