pub struct AssetTelegram {
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<AssetTelegramGroup>,
}Expand description
Asset: Historical Telegram
Fields§
§unit: StringThe unit of the historical period update: HOUR for hour and DAY for day.
timestamp: i64The 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_: StringThe type of the message.
asset_id: i32The unique identifier for the asset.
asset_symbol: StringInternal mapped symbol for a specific asset.
total_members: i32The total number of users/members in this Telegram group.
telegram_groups: Vec<AssetTelegramGroup>An array with all the data for each Telegram group used to calculate the total stats.
Trait Implementations§
Source§impl Clone for AssetTelegram
impl Clone for AssetTelegram
Source§fn clone(&self) -> AssetTelegram
fn clone(&self) -> AssetTelegram
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 AssetTelegram
impl Debug for AssetTelegram
Source§impl<'de> Deserialize<'de> for AssetTelegram
impl<'de> Deserialize<'de> for AssetTelegram
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 AssetTelegram
impl RefUnwindSafe for AssetTelegram
impl Send for AssetTelegram
impl Sync for AssetTelegram
impl Unpin for AssetTelegram
impl UnsafeUnpin for AssetTelegram
impl UnwindSafe for AssetTelegram
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