pub struct RepairTransaction {
pub waypoint_symbol: String,
pub ship_symbol: String,
pub total_price: i32,
pub timestamp: String,
}Expand description
RepairTransaction : Result of a repair transaction.
Fields§
§waypoint_symbol: StringThe symbol of the waypoint.
ship_symbol: StringThe symbol of the ship.
total_price: i32The total price of the transaction.
timestamp: StringThe timestamp of the transaction.
Implementations§
Trait Implementations§
Source§impl Clone for RepairTransaction
impl Clone for RepairTransaction
Source§fn clone(&self) -> RepairTransaction
fn clone(&self) -> RepairTransaction
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 RepairTransaction
impl Debug for RepairTransaction
Source§impl Default for RepairTransaction
impl Default for RepairTransaction
Source§fn default() -> RepairTransaction
fn default() -> RepairTransaction
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RepairTransaction
impl<'de> Deserialize<'de> for RepairTransaction
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
Source§impl PartialEq for RepairTransaction
impl PartialEq for RepairTransaction
Source§impl Serialize for RepairTransaction
impl Serialize for RepairTransaction
impl StructuralPartialEq for RepairTransaction
Auto Trait Implementations§
impl Freeze for RepairTransaction
impl RefUnwindSafe for RepairTransaction
impl Send for RepairTransaction
impl Sync for RepairTransaction
impl Unpin for RepairTransaction
impl UnwindSafe for RepairTransaction
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