Struct mailchimp_api::activity_feed::ActivityFeed
source · pub struct ActivityFeed {
pub client: Client,
}
Fields
client: Client
Implementations
sourceimpl ActivityFeed
impl ActivityFeed
sourcepub async fn get_chimp_chatter(
&self,
count: i64,
offset: i64
) -> Result<GetActivityFeedChimpChatterResponse>
pub async fn get_chimp_chatter(
&self,
count: i64,
offset: i64
) -> Result<GetActivityFeedChimpChatterResponse>
Get latest chimp chatter.
This function performs a GET
to the /activity-feed/chimp-chatter
endpoint.
Return the Chimp Chatter for this account ordered by most recent.
Parameters:
count: i64
– The number of records to return. Default value is 10. Maximum value is 1000.offset: i64
– Used for pagination, this it the number of records from a collection to skip. Default value is 0.
Auto Trait Implementations
impl !RefUnwindSafe for ActivityFeed
impl Send for ActivityFeed
impl Sync for ActivityFeed
impl Unpin for ActivityFeed
impl !UnwindSafe for ActivityFeed
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more