pub struct GeOrderTransactionSchema {
pub cooldown: Box<CooldownSchema>,
pub order: Box<GeOrderCreatedSchema>,
pub character: Box<CharacterSchema>,
}Fields§
§cooldown: Box<CooldownSchema>Cooldown details.
order: Box<GeOrderCreatedSchema>Order details.
character: Box<CharacterSchema>Character details.
Implementations§
Source§impl GeOrderTransactionSchema
impl GeOrderTransactionSchema
pub fn new( cooldown: CooldownSchema, order: GeOrderCreatedSchema, character: CharacterSchema, ) -> GeOrderTransactionSchema
Trait Implementations§
Source§impl Clone for GeOrderTransactionSchema
impl Clone for GeOrderTransactionSchema
Source§fn clone(&self) -> GeOrderTransactionSchema
fn clone(&self) -> GeOrderTransactionSchema
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 GeOrderTransactionSchema
impl Debug for GeOrderTransactionSchema
Source§impl Default for GeOrderTransactionSchema
impl Default for GeOrderTransactionSchema
Source§fn default() -> GeOrderTransactionSchema
fn default() -> GeOrderTransactionSchema
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GeOrderTransactionSchema
impl<'de> Deserialize<'de> for GeOrderTransactionSchema
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 GetCharacter for GeOrderTransactionSchema
impl GetCharacter for GeOrderTransactionSchema
fn get_character(&self) -> &CharacterSchema
Source§impl GetCooldown for GeOrderTransactionSchema
impl GetCooldown for GeOrderTransactionSchema
fn get_cooldown(&self) -> &CooldownSchema
Source§impl PartialEq for GeOrderTransactionSchema
impl PartialEq for GeOrderTransactionSchema
Source§impl Serialize for GeOrderTransactionSchema
impl Serialize for GeOrderTransactionSchema
impl StructuralPartialEq for GeOrderTransactionSchema
Auto Trait Implementations§
impl Freeze for GeOrderTransactionSchema
impl RefUnwindSafe for GeOrderTransactionSchema
impl Send for GeOrderTransactionSchema
impl Sync for GeOrderTransactionSchema
impl Unpin for GeOrderTransactionSchema
impl UnwindSafe for GeOrderTransactionSchema
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