pub struct CCAssetTelegram {
pub unit: String,
pub timestamp: i64,
pub type_: String,
pub asset_id: i32,
pub asset_symbol: String,
pub total_members: i32,
pub telegram_groups: Vec<CCAssetTelegramGroup>,
}
Expand description
Asset: Historical Telegram
Fields§
§unit: String
The unit of the historical period update: HOUR for hour and DAY for day.
timestamp: i64
The timestamp in seconds of the histo period, for hour it would be start of the hour and for daily it is 00:00 GMT/UTC.
type_: String
The type of the message.
asset_id: i32
The unique identifier for the asset.
asset_symbol: String
Internal mapped symbol for a specific asset.
total_members: i32
The total number of users/members in this Telegram group.
telegram_groups: Vec<CCAssetTelegramGroup>
An array with all the data for each Telegram group used to calculate the total stats.
Trait Implementations§
Source§impl Debug for CCAssetTelegram
impl Debug for CCAssetTelegram
Source§impl<'de> Deserialize<'de> for CCAssetTelegram
impl<'de> Deserialize<'de> for CCAssetTelegram
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
Auto Trait Implementations§
impl Freeze for CCAssetTelegram
impl RefUnwindSafe for CCAssetTelegram
impl Send for CCAssetTelegram
impl Sync for CCAssetTelegram
impl Unpin for CCAssetTelegram
impl UnwindSafe for CCAssetTelegram
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