pub struct InstallMount201ResponseData {
pub agent: Agent,
pub mounts: Vec<ShipMount>,
pub cargo: ShipCargo,
pub transaction: ShipModificationTransaction,
}Expand description
Fields§
§agent: Agent§mounts: Vec<ShipMount>List of installed mounts after the installation of the new mount.
cargo: ShipCargo§transaction: ShipModificationTransactionImplementations§
Source§impl InstallMount201ResponseData
impl InstallMount201ResponseData
Sourcepub fn new(
agent: Agent,
mounts: Vec<ShipMount>,
cargo: ShipCargo,
transaction: ShipModificationTransaction,
) -> InstallMount201ResponseData
pub fn new( agent: Agent, mounts: Vec<ShipMount>, cargo: ShipCargo, transaction: ShipModificationTransaction, ) -> InstallMount201ResponseData
Create value with optional fields set to None.
Trait Implementations§
Source§impl Clone for InstallMount201ResponseData
impl Clone for InstallMount201ResponseData
Source§fn clone(&self) -> InstallMount201ResponseData
fn clone(&self) -> InstallMount201ResponseData
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 InstallMount201ResponseData
impl Debug for InstallMount201ResponseData
Source§impl<'de> Deserialize<'de> for InstallMount201ResponseData
impl<'de> Deserialize<'de> for InstallMount201ResponseData
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
impl StructuralPartialEq for InstallMount201ResponseData
Auto Trait Implementations§
impl Freeze for InstallMount201ResponseData
impl RefUnwindSafe for InstallMount201ResponseData
impl Send for InstallMount201ResponseData
impl Sync for InstallMount201ResponseData
impl Unpin for InstallMount201ResponseData
impl UnwindSafe for InstallMount201ResponseData
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