pub struct Service<T>
where T: XrpcClient + Send + Sync,
{ /* private fields */ }

Implementations§

source§

impl<T> Service<T>
where T: XrpcClient + Send + Sync,

source

pub async fn get_blocks( &self, params: Parameters ) -> Result<Output, Error<Error>>

Enumerates which accounts the requesting account is currently blocking. Requires auth.

source

pub async fn get_followers( &self, params: Parameters ) -> Result<Output, Error<Error>>

Enumerates accounts which follow a specified account (actor).

source

pub async fn get_follows( &self, params: Parameters ) -> Result<Output, Error<Error>>

Enumerates accounts which a specified account (actor) follows.

source

pub async fn get_list(&self, params: Parameters) -> Result<Output, Error<Error>>

Gets a ‘view’ (with additional context) of a specified list.

source

pub async fn get_list_blocks( &self, params: Parameters ) -> Result<Output, Error<Error>>

Get mod lists that the requesting account (actor) is blocking. Requires auth.

source

pub async fn get_list_mutes( &self, params: Parameters ) -> Result<Output, Error<Error>>

Enumerates mod lists that the requesting account (actor) currently has muted. Requires auth.

source

pub async fn get_lists( &self, params: Parameters ) -> Result<Output, Error<Error>>

Enumerates the lists created by a specified account (actor).

source

pub async fn get_mutes( &self, params: Parameters ) -> Result<Output, Error<Error>>

Enumerates accounts that the requesting account (actor) currently has muted. Requires auth.

source

pub async fn get_relationships( &self, params: Parameters ) -> Result<Output, Error<Error>>

Enumerates public relationships between one account, and a list of other accounts. Does not require auth.

source

pub async fn get_suggested_follows_by_actor( &self, params: Parameters ) -> Result<Output, Error<Error>>

Enumerates follows similar to a given account (actor). Expected use is to recommend additional accounts immediately after following one account.

source

pub async fn mute_actor(&self, input: Input) -> Result<(), Error<Error>>

Creates a mute relationship for the specified account. Mutes are private in Bluesky. Requires auth.

source

pub async fn mute_actor_list(&self, input: Input) -> Result<(), Error<Error>>

Creates a mute relationship for the specified list of accounts. Mutes are private in Bluesky. Requires auth.

source

pub async fn unmute_actor(&self, input: Input) -> Result<(), Error<Error>>

Unmutes the specified account. Requires auth.

source

pub async fn unmute_actor_list(&self, input: Input) -> Result<(), Error<Error>>

Unmutes the specified list of accounts. Requires auth.

Auto Trait Implementations§

§

impl<T> RefUnwindSafe for Service<T>
where T: RefUnwindSafe,

§

impl<T> Send for Service<T>

§

impl<T> Sync for Service<T>

§

impl<T> Unpin for Service<T>

§

impl<T> UnwindSafe for Service<T>
where T: RefUnwindSafe,

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> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

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.

source§

impl<T> References<RawCodec> for T

source§

fn references<R, E>(_c: RawCodec, _r: &mut R, _set: &mut E) -> Result<(), Error>
where R: Read, E: Extend<Cid<64>>,

Scrape the references from an impl Read. Read more
source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

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

§

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>,

§

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.