Struct MastodonClient

Source
pub struct MastodonClient { /* private fields */ }
Expand description

The main entry point for interacting with the Mastodon API.

Use MastodonClient::new to create a new instance, and with_token to authenticate.

Implementations§

Source§

impl MastodonClient

Source

pub fn new(instance_url: &str) -> Self

Creates a new MastodonClient for the given instance URL.

§Example
use mastodon_api::MastodonClient;
let client = MastodonClient::new("https://mastodon.social");
Source

pub fn with_token(self, token: &str) -> Self

Sets the access token for the client, enabling authenticated requests.

Source

pub fn access_token(&self) -> Option<&str>

Returns the access token used by the client, if any.

Source

pub fn base_url(&self) -> &str

Returns the base URL of the Mastodon instance.

Source

pub fn http_client(&self) -> &Client

Returns a reference to the underlying HTTP client.

Source

pub fn accounts(&self) -> AccountsHandler<'_>

Access account-related endpoints.

Source

pub fn follow_requests(&self) -> FollowRequestsHandler<'_>

Access follow request-related endpoints.

Source

pub fn announcements(&self) -> AnnouncementsHandler<'_>

Access server-wide announcements.

Source

pub fn statuses(&self) -> StatusesHandler<'_>

Access status-related (posting) endpoints.

Source

pub fn timelines(&self) -> TimelinesHandler<'_>

Access timeline-related endpoints (Home, Public, etc.).

Source

pub fn apps(&self) -> AppsHandler<'_>

Access application registration and OAuth endpoints.

Source

pub fn media(&self) -> MediaHandler<'_>

Access media upload and management endpoints.

Source

pub fn filters(&self) -> FiltersHandler<'_>

Access content filter management endpoints.

Source

pub fn tags(&self) -> TagsHandler<'_>

Access tag management endpoints (followed and featured tags).

Source

pub fn markers(&self) -> MarkersHandler<'_>

Access reading position sync (markers).

Source

pub fn reports(&self) -> ReportsHandler<'_>

Access reports made by the authenticated user.

Source

pub fn endorsements(&self) -> EndorsementsHandler<'_>

Access accounts endorsed (pinned) by the authenticated user.

Source

pub fn domain_blocks(&self) -> DomainBlocksHandler<'_>

Access domain blocks for the authenticated user.

Source

pub fn preferences(&self) -> PreferencesHandler<'_>

Access user preferences.

Source

pub fn push(&self) -> PushHandler<'_>

Access Web Push API subscriptions.

Source

pub fn admin(&self) -> AdminHandler<'_>

Access administrative moderation and management endpoints.

Source

pub fn lists(&self) -> ListsHandler<'_>

Access list management endpoints.

Source

pub fn conversations(&self) -> ConversationsHandler<'_>

Access direct conversation (DM) endpoints.

Source

pub fn notifications(&self) -> NotificationsHandler<'_>

Access notification management endpoints.

Source

pub fn search(&self) -> SearchHandler<'_>

Access global search endpoints.

Source

pub fn suggestions(&self) -> SuggestionsHandler<'_>

Access account suggestions for follow.

Source

pub fn trends(&self) -> TrendsHandler<'_>

Access trending content endpoints.

Source

pub fn emojis(&self) -> EmojisHandler<'_>

Access custom emoji endpoints.

Source

pub fn instance(&self) -> InstanceHandler<'_>

Access instance metadata endpoints.

Source

pub fn streaming(&self) -> StreamingClient

Create a new streaming client for real-time events.

Trait Implementations§

Source§

impl Clone for MastodonClient

Source§

fn clone(&self) -> MastodonClient

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

§

impl<T> PolicyExt for T
where T: ?Sized,

§

fn and<P, B, E>(self, other: P) -> And<T, P>
where T: Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns [Action::Follow] only if self and other return Action::Follow. Read more
§

fn or<P, B, E>(self, other: P) -> Or<T, P>
where T: Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns [Action::Follow] if either self or other returns Action::Follow. Read more
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

§

fn vzip(self) -> V

§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more