[][src]Struct rtdlib::types::GetChatEventLog

pub struct GetChatEventLog { /* fields omitted */ }

Returns a list of service actions taken by chat members and administrators in the last 48 hours. Available only for supergroups and channels. Requires administrator rights. Returns results in reverse chronological order (i. e., in order of decreasing event_id)

Implementations

impl GetChatEventLog[src]

pub fn from_json<S: AsRef<str>>(json: S) -> RTDResult<Self>[src]

pub fn builder() -> RTDGetChatEventLogBuilder[src]

pub fn chat_id(&self) -> i64[src]

pub fn query(&self) -> &String[src]

pub fn from_event_id(&self) -> isize[src]

pub fn limit(&self) -> i64[src]

pub fn filters(&self) -> &ChatEventLogFilters[src]

pub fn user_ids(&self) -> &Vec<i64>[src]

Trait Implementations

impl AsRef<GetChatEventLog> for GetChatEventLog[src]

impl Clone for GetChatEventLog[src]

impl Debug for GetChatEventLog[src]

impl Default for GetChatEventLog[src]

impl<'de> Deserialize<'de> for GetChatEventLog[src]

impl RFunction for GetChatEventLog[src]

impl RObject for GetChatEventLog[src]

impl Serialize for GetChatEventLog[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.