pub struct Service<T>{ /* private fields */ }
Available on crate feature
namespace-chatbsky
only.Implementations§
source§impl<T> Service<T>
impl<T> Service<T>
pub async fn delete_message_for_self( &self, input: Input, ) -> Result<Output, Error>
pub async fn get_convo(&self, params: Parameters) -> Result<Output, Error>
pub async fn get_convo_for_members( &self, params: Parameters, ) -> Result<Output, Error>
pub async fn get_log(&self, params: Parameters) -> Result<Output, Error>
pub async fn get_messages(&self, params: Parameters) -> Result<Output, Error>
pub async fn leave_convo(&self, input: Input) -> Result<Output, Error>
pub async fn list_convos(&self, params: Parameters) -> Result<Output, Error>
pub async fn mute_convo(&self, input: Input) -> Result<Output, Error>
pub async fn send_message(&self, input: Input) -> Result<Output, Error>
pub async fn send_message_batch(&self, input: Input) -> Result<Output, Error>
pub async fn unmute_convo(&self, input: Input) -> Result<Output, Error>
pub async fn update_read(&self, input: Input) -> Result<Output, Error>
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