pub struct Service<T>{ /* private fields */ }
Implementations§
Source§impl<T> Service<T>
impl<T> Service<T>
Sourcepub async fn add_reserved_handle(&self, input: Input) -> Result<Output, Error>
pub async fn add_reserved_handle(&self, input: Input) -> Result<Output, Error>
Add a handle to the set of reserved handles.
Sourcepub async fn check_signup_queue(&self) -> Result<Output, Error>
pub async fn check_signup_queue(&self) -> Result<Output, Error>
Check accounts location in signup queue.
Sourcepub async fn fetch_labels(&self, params: Parameters) -> Result<Output, Error>
pub async fn fetch_labels(&self, params: Parameters) -> Result<Output, Error>
DEPRECATED: use queryLabels or subscribeLabels instead – Fetch all labels from a labeler created after a certain date.
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> 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