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_preferences( &self, params: Parameters ) -> Result<Output, Error<Error>>

Get private preferences attached to the current account. Expected use is synchronization between multiple devices, and import/export during account migration. Requires auth.

source

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

Get detailed profile view of an actor. Does not require auth, but contains relevant metadata with auth.

source

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

Get detailed profile views of multiple actors.

source

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

Get a list of suggested actors. Expected use is discovery of accounts to follow during new account onboarding.

source

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

Set the private preferences attached to the account.

source

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

Find actors (profiles) matching search criteria. Does not require auth.

source

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

Find actor suggestions for a prefix search term. Expected use is for auto-completion during text field entry. Does not require 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.