pub struct MessageCommentReactionHandler { /* private fields */ }Implementations§
Source§impl MessageCommentReactionHandler
impl MessageCommentReactionHandler
pub fn new(client: FilesClient) -> Self
pub async fn list( &self, message_comment_id: i64, cursor: Option<String>, per_page: Option<i64>, ) -> Result<(Vec<MessageCommentReactionEntity>, PaginationInfo)>
pub async fn get(&self, id: i64) -> Result<MessageCommentReactionEntity>
pub async fn create( &self, params: Value, ) -> Result<MessageCommentReactionEntity>
pub async fn delete(&self, id: i64) -> Result<()>
Auto Trait Implementations§
impl !RefUnwindSafe for MessageCommentReactionHandler
impl !UnwindSafe for MessageCommentReactionHandler
impl Freeze for MessageCommentReactionHandler
impl Send for MessageCommentReactionHandler
impl Sync for MessageCommentReactionHandler
impl Unpin for MessageCommentReactionHandler
impl UnsafeUnpin for MessageCommentReactionHandler
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