pub struct Service<T>{ /* private fields */ }Implementations§
source§impl<T> Service<T>
impl<T> Service<T>
sourcepub async fn fetch_labels(
&self,
params: Parameters
) -> Result<Output, Error<Error>>
pub async fn fetch_labels( &self, params: Parameters ) -> Result<Output, Error<Error>>
Fetch all labels from a labeler created after a certain date.
sourcepub async fn import_repo(&self, input: Vec<u8>) -> Result<Vec<u8>, Error<Error>>
pub async fn import_repo(&self, input: Vec<u8>) -> Result<Vec<u8>, Error<Error>>
Gets the did’s repo, optionally catching up from a specific revision.
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> 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