pub struct MegagroupStats {Show 17 fields
pub period: StatsDateRangeDays,
pub members: StatsAbsValueAndPrev,
pub messages: StatsAbsValueAndPrev,
pub viewers: StatsAbsValueAndPrev,
pub posters: StatsAbsValueAndPrev,
pub growth_graph: StatsGraph,
pub members_graph: StatsGraph,
pub new_members_by_source_graph: StatsGraph,
pub languages_graph: StatsGraph,
pub messages_graph: StatsGraph,
pub actions_graph: StatsGraph,
pub top_hours_graph: StatsGraph,
pub weekdays_graph: StatsGraph,
pub top_posters: Vec<StatsGroupTopPoster>,
pub top_admins: Vec<StatsGroupTopAdmin>,
pub top_inviters: Vec<StatsGroupTopInviter>,
pub users: Vec<User>,
}Expand description
Generated from:
stats.megagroupStats#ef7ff916 period:StatsDateRangeDays members:StatsAbsValueAndPrev messages:StatsAbsValueAndPrev viewers:StatsAbsValueAndPrev posters:StatsAbsValueAndPrev growth_graph:StatsGraph members_graph:StatsGraph new_members_by_source_graph:StatsGraph languages_graph:StatsGraph messages_graph:StatsGraph actions_graph:StatsGraph top_hours_graph:StatsGraph weekdays_graph:StatsGraph top_posters:Vector<StatsGroupTopPoster> top_admins:Vector<StatsGroupTopAdmin> top_inviters:Vector<StatsGroupTopInviter> users:Vector<User> = stats.MegagroupStatsFields§
§period: StatsDateRangeDays§members: StatsAbsValueAndPrev§messages: StatsAbsValueAndPrev§viewers: StatsAbsValueAndPrev§posters: StatsAbsValueAndPrev§growth_graph: StatsGraph§members_graph: StatsGraph§new_members_by_source_graph: StatsGraph§languages_graph: StatsGraph§messages_graph: StatsGraph§actions_graph: StatsGraph§top_hours_graph: StatsGraph§weekdays_graph: StatsGraph§top_posters: Vec<StatsGroupTopPoster>§top_admins: Vec<StatsGroupTopAdmin>§top_inviters: Vec<StatsGroupTopInviter>§users: Vec<User>Trait Implementations§
Source§impl Clone for MegagroupStats
impl Clone for MegagroupStats
Source§fn clone(&self) -> MegagroupStats
fn clone(&self) -> MegagroupStats
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 MegagroupStats
impl Debug for MegagroupStats
Source§impl Deserializable for MegagroupStats
impl Deserializable for MegagroupStats
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<MegagroupStats> for MegagroupStats
impl From<MegagroupStats> for MegagroupStats
Source§fn from(x: MegagroupStats) -> Self
fn from(x: MegagroupStats) -> Self
Converts to this type from the input type.
Source§impl Identifiable for MegagroupStats
impl Identifiable for MegagroupStats
Source§const CONSTRUCTOR_ID: u32 = 0xef7ff916
const CONSTRUCTOR_ID: u32 = 0xef7ff916
The constructor ID as specified in the TL schema.
Source§impl PartialEq for MegagroupStats
impl PartialEq for MegagroupStats
Source§impl Serializable for MegagroupStats
impl Serializable for MegagroupStats
Source§impl TryFrom<MegagroupStats> for MegagroupStats
impl TryFrom<MegagroupStats> for MegagroupStats
Source§type Error = MegagroupStats
type Error = MegagroupStats
The type returned in the event of a conversion error.
impl StructuralPartialEq for MegagroupStats
Auto Trait Implementations§
impl Freeze for MegagroupStats
impl RefUnwindSafe for MegagroupStats
impl Send for MegagroupStats
impl Sync for MegagroupStats
impl Unpin for MegagroupStats
impl UnsafeUnpin for MegagroupStats
impl UnwindSafe for MegagroupStats
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