pub struct Service<T>{ /* private fields */ }Available on crate feature
namespace-appbsky only.Implementations§
Source§impl<T> Service<T>
impl<T> Service<T>
Sourcepub async fn create_bookmark(&self, input: Input) -> Result<(), Error>
pub async fn create_bookmark(&self, input: Input) -> Result<(), Error>
Creates a private bookmark for the specified record. Currently, only app.bsky.feed.post records are supported. Requires authentication.
Sourcepub async fn delete_bookmark(&self, input: Input) -> Result<(), Error>
pub async fn delete_bookmark(&self, input: Input) -> Result<(), Error>
Deletes a private bookmark for the specified record. Currently, only app.bsky.feed.post records are supported. Requires authentication.
Sourcepub async fn get_bookmarks(&self, params: Parameters) -> Result<Output, Error>
pub async fn get_bookmarks(&self, params: Parameters) -> Result<Output, Error>
Gets views of records bookmarked by the authenticated user. Requires authentication.
Auto Trait Implementations§
impl<T> Freeze for Service<T>
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>where
T: Unpin,
impl<T> UnsafeUnpin for Service<T>
impl<T> UnwindSafe for Service<T>where
T: RefUnwindSafe + UnwindSafe,
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more