pub enum LSPS0Request {
ListProtocols(ListProtocolsRequest),
}
Expand description
An LSPS0 protocol request.
Please refer to the LSPS0 specification for more information.
Variants§
ListProtocols(ListProtocolsRequest)
A request calling list_protocols
.
Implementations§
Trait Implementations§
Source§impl Clone for LSPS0Request
impl Clone for LSPS0Request
Source§fn clone(&self) -> LSPS0Request
fn clone(&self) -> LSPS0Request
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 LSPS0Request
impl Debug for LSPS0Request
Source§impl PartialEq for LSPS0Request
impl PartialEq for LSPS0Request
impl Eq for LSPS0Request
impl StructuralPartialEq for LSPS0Request
Auto Trait Implementations§
impl Freeze for LSPS0Request
impl RefUnwindSafe for LSPS0Request
impl Send for LSPS0Request
impl Sync for LSPS0Request
impl Unpin for LSPS0Request
impl UnwindSafe for LSPS0Request
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