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