pub struct StarsRevenueStats {
pub top_hours_graph: Option<StatsGraph>,
pub revenue_graph: StatsGraph,
pub status: StarsRevenueStatus,
pub usd_rate: f64,
}Expand description
Generated from:
payments.starsRevenueStats#6c207376 flags:# top_hours_graph:flags.0?StatsGraph revenue_graph:StatsGraph status:StarsRevenueStatus usd_rate:double = payments.StarsRevenueStatsFields§
§top_hours_graph: Option<StatsGraph>§revenue_graph: StatsGraph§status: StarsRevenueStatus§usd_rate: f64Trait Implementations§
Source§impl Clone for StarsRevenueStats
impl Clone for StarsRevenueStats
Source§fn clone(&self) -> StarsRevenueStats
fn clone(&self) -> StarsRevenueStats
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 StarsRevenueStats
impl Debug for StarsRevenueStats
Source§impl Deserializable for StarsRevenueStats
impl Deserializable for StarsRevenueStats
Source§fn deserialize(buf: Buffer<'_, '_>) -> Result<Self>
fn deserialize(buf: Buffer<'_, '_>) -> Result<Self>
Read
Self from buf, advancing its position.Source§fn from_bytes(bytes: &[u8]) -> Result<Self>
fn from_bytes(bytes: &[u8]) -> Result<Self>
Convenience: deserialize from a byte slice.
Source§impl From<StarsRevenueStats> for StarsRevenueStats
impl From<StarsRevenueStats> for StarsRevenueStats
Source§fn from(x: StarsRevenueStats) -> Self
fn from(x: StarsRevenueStats) -> Self
Converts to this type from the input type.
Source§impl Identifiable for StarsRevenueStats
impl Identifiable for StarsRevenueStats
Source§const CONSTRUCTOR_ID: u32 = 0x6c207376
const CONSTRUCTOR_ID: u32 = 0x6c207376
The constructor ID as specified in the TL schema.
Source§impl PartialEq for StarsRevenueStats
impl PartialEq for StarsRevenueStats
Source§impl Serializable for StarsRevenueStats
impl Serializable for StarsRevenueStats
Source§impl TryFrom<StarsRevenueStats> for StarsRevenueStats
impl TryFrom<StarsRevenueStats> for StarsRevenueStats
Source§type Error = StarsRevenueStats
type Error = StarsRevenueStats
The type returned in the event of a conversion error.
impl StructuralPartialEq for StarsRevenueStats
Auto Trait Implementations§
impl Freeze for StarsRevenueStats
impl RefUnwindSafe for StarsRevenueStats
impl Send for StarsRevenueStats
impl Sync for StarsRevenueStats
impl Unpin for StarsRevenueStats
impl UnsafeUnpin for StarsRevenueStats
impl UnwindSafe for StarsRevenueStats
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