pub enum LSPS5Response {
SetWebhook(SetWebhookResponse),
SetWebhookError(LSPSResponseError),
ListWebhooks(ListWebhooksResponse),
RemoveWebhook(RemoveWebhookResponse),
RemoveWebhookError(LSPSResponseError),
}Expand description
An LSPS5 protocol response.
Variants§
SetWebhook(SetWebhookResponse)
Response to SetWebhook request.
SetWebhookError(LSPSResponseError)
Error response to SetWebhook request.
ListWebhooks(ListWebhooksResponse)
Response to ListWebhooks request.
RemoveWebhook(RemoveWebhookResponse)
Response to RemoveWebhook request.
RemoveWebhookError(LSPSResponseError)
Error response to RemoveWebhook request.
Trait Implementations§
Source§impl Clone for LSPS5Response
impl Clone for LSPS5Response
Source§fn clone(&self) -> LSPS5Response
fn clone(&self) -> LSPS5Response
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for LSPS5Response
impl Debug for LSPS5Response
Source§impl PartialEq for LSPS5Response
impl PartialEq for LSPS5Response
impl Eq for LSPS5Response
impl StructuralPartialEq for LSPS5Response
Auto Trait Implementations§
impl Freeze for LSPS5Response
impl RefUnwindSafe for LSPS5Response
impl Send for LSPS5Response
impl Sync for LSPS5Response
impl Unpin for LSPS5Response
impl UnwindSafe for LSPS5Response
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