pub struct RemoveShipModuleResponse {
pub data: RemoveShipModuleResponseData,
}Expand description
Successfully removed the module from the ship.
JSON schema
{
"description": "Successfully removed the module from the ship.",
"type": "object",
"required": [
"data"
],
"properties": {
"data": {
"type": "object",
"required": [
"agent",
"cargo",
"modules",
"transaction"
],
"properties": {
"agent": {
"$ref": "#/components/schemas/Agent"
},
"cargo": {
"$ref": "#/components/schemas/ShipCargo"
},
"modules": {
"type": "array",
"items": {
"$ref": "#/components/schemas/ShipModule"
}
},
"transaction": {
"$ref": "#/components/schemas/ShipModificationTransaction"
}
}
}
}
}Fields§
§data: RemoveShipModuleResponseDataTrait Implementations§
Source§impl Clone for RemoveShipModuleResponse
impl Clone for RemoveShipModuleResponse
Source§fn clone(&self) -> RemoveShipModuleResponse
fn clone(&self) -> RemoveShipModuleResponse
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 RemoveShipModuleResponse
impl Debug for RemoveShipModuleResponse
Source§impl<'de> Deserialize<'de> for RemoveShipModuleResponse
impl<'de> Deserialize<'de> for RemoveShipModuleResponse
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 RemoveShipModuleResponse
impl RefUnwindSafe for RemoveShipModuleResponse
impl Send for RemoveShipModuleResponse
impl Sync for RemoveShipModuleResponse
impl Unpin for RemoveShipModuleResponse
impl UnsafeUnpin for RemoveShipModuleResponse
impl UnwindSafe for RemoveShipModuleResponse
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