pub enum Report {
ReportMoney(ReportMoney),
ReportStats(ReportStats),
ReportMostWanted(ReportMostWanted),
ReportHistory(ReportHistory),
ReportFriendOrFoe(ReportFriendOrFoe),
ReportCompanyFinancials(ReportCompanyFinancials),
ReportTrueLevel(ReportTrueLevel),
ReportStockAnalysis(ReportStockAnalysis),
ReportAnonymousBounties(ReportAnonymousBounties),
ReportInvestment(ReportInvestment),
}
Variants§
ReportMoney(ReportMoney)
ReportStats(ReportStats)
ReportMostWanted(ReportMostWanted)
ReportHistory(ReportHistory)
ReportFriendOrFoe(ReportFriendOrFoe)
ReportCompanyFinancials(ReportCompanyFinancials)
ReportTrueLevel(ReportTrueLevel)
ReportStockAnalysis(ReportStockAnalysis)
ReportAnonymousBounties(ReportAnonymousBounties)
ReportInvestment(ReportInvestment)
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Report
impl<'de> Deserialize<'de> for Report
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 From<ReportAnonymousBounties> for Report
impl From<ReportAnonymousBounties> for Report
Source§fn from(value: ReportAnonymousBounties) -> Self
fn from(value: ReportAnonymousBounties) -> Self
Converts to this type from the input type.
Source§impl From<ReportCompanyFinancials> for Report
impl From<ReportCompanyFinancials> for Report
Source§fn from(value: ReportCompanyFinancials) -> Self
fn from(value: ReportCompanyFinancials) -> Self
Converts to this type from the input type.
Source§impl From<ReportFriendOrFoe> for Report
impl From<ReportFriendOrFoe> for Report
Source§fn from(value: ReportFriendOrFoe) -> Self
fn from(value: ReportFriendOrFoe) -> Self
Converts to this type from the input type.
Source§impl From<ReportHistory> for Report
impl From<ReportHistory> for Report
Source§fn from(value: ReportHistory) -> Self
fn from(value: ReportHistory) -> Self
Converts to this type from the input type.
Source§impl From<ReportInvestment> for Report
impl From<ReportInvestment> for Report
Source§fn from(value: ReportInvestment) -> Self
fn from(value: ReportInvestment) -> Self
Converts to this type from the input type.
Source§impl From<ReportMoney> for Report
impl From<ReportMoney> for Report
Source§fn from(value: ReportMoney) -> Self
fn from(value: ReportMoney) -> Self
Converts to this type from the input type.
Source§impl From<ReportMostWanted> for Report
impl From<ReportMostWanted> for Report
Source§fn from(value: ReportMostWanted) -> Self
fn from(value: ReportMostWanted) -> Self
Converts to this type from the input type.
Source§impl From<ReportStats> for Report
impl From<ReportStats> for Report
Source§fn from(value: ReportStats) -> Self
fn from(value: ReportStats) -> Self
Converts to this type from the input type.
Source§impl From<ReportStockAnalysis> for Report
impl From<ReportStockAnalysis> for Report
Source§fn from(value: ReportStockAnalysis) -> Self
fn from(value: ReportStockAnalysis) -> Self
Converts to this type from the input type.
Source§impl From<ReportTrueLevel> for Report
impl From<ReportTrueLevel> for Report
Source§fn from(value: ReportTrueLevel) -> Self
fn from(value: ReportTrueLevel) -> Self
Converts to this type from the input type.
impl StructuralPartialEq for Report
Auto Trait Implementations§
impl Freeze for Report
impl RefUnwindSafe for Report
impl Send for Report
impl Sync for Report
impl Unpin for Report
impl UnwindSafe for Report
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