pub enum LSPS5Request {
SetWebhook(SetWebhookRequest),
ListWebhooks(ListWebhooksRequest),
RemoveWebhook(RemoveWebhookRequest),
}Expand description
An LSPS5 protocol request.
Variants§
SetWebhook(SetWebhookRequest)
Register or update a webhook.
ListWebhooks(ListWebhooksRequest)
List all registered webhooks.
RemoveWebhook(RemoveWebhookRequest)
Remove a webhook.
Trait Implementations§
Source§impl Clone for LSPS5Request
impl Clone for LSPS5Request
Source§fn clone(&self) -> LSPS5Request
fn clone(&self) -> LSPS5Request
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 LSPS5Request
impl Debug for LSPS5Request
Source§impl PartialEq for LSPS5Request
impl PartialEq for LSPS5Request
impl Eq for LSPS5Request
impl StructuralPartialEq for LSPS5Request
Auto Trait Implementations§
impl Freeze for LSPS5Request
impl RefUnwindSafe for LSPS5Request
impl Send for LSPS5Request
impl Sync for LSPS5Request
impl Unpin for LSPS5Request
impl UnwindSafe for LSPS5Request
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