pub struct FeedbackApi { /* private fields */ }Expand description
Error reports from any tenant; the inbox is super-admin only
Implementations§
Source§impl FeedbackApi
impl FeedbackApi
Sourcepub async fn submit_feedback(
&self,
body: &SubmitFeedbackRequest,
) -> Result<SubmitFeedbackResponse>
pub async fn submit_feedback( &self, body: &SubmitFeedbackRequest, ) -> Result<SubmitFeedbackResponse>
Report an error or send feedback
Any authenticated caller. message is required; everything else is optional and clipped to
a maximum length rather than rejected, so a long paste still files a report instead of
losing it.
POST /api/v1/feedback
Trait Implementations§
Source§impl Clone for FeedbackApi
impl Clone for FeedbackApi
Source§fn clone(&self) -> FeedbackApi
fn clone(&self) -> FeedbackApi
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl !RefUnwindSafe for FeedbackApi
impl !UnwindSafe for FeedbackApi
impl Freeze for FeedbackApi
impl Send for FeedbackApi
impl Sync for FeedbackApi
impl Unpin for FeedbackApi
impl UnsafeUnpin for FeedbackApi
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