pub enum LSPS5Message {
Request(LSPSRequestId, LSPS5Request),
Response(LSPSRequestId, LSPS5Response),
}Expand description
An LSPS5 protocol message.
Variants§
Request(LSPSRequestId, LSPS5Request)
A request variant.
Response(LSPSRequestId, LSPS5Response)
A response variant.
Trait Implementations§
Source§impl Clone for LSPS5Message
impl Clone for LSPS5Message
Source§fn clone(&self) -> LSPS5Message
fn clone(&self) -> LSPS5Message
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 LSPS5Message
impl Debug for LSPS5Message
Source§impl From<LSPS5Message> for LSPSMessage
impl From<LSPS5Message> for LSPSMessage
Source§fn from(message: LSPS5Message) -> Self
fn from(message: LSPS5Message) -> Self
Converts to this type from the input type.
Source§impl PartialEq for LSPS5Message
impl PartialEq for LSPS5Message
Source§impl TryFrom<LSPSMessage> for LSPS5Message
impl TryFrom<LSPSMessage> for LSPS5Message
impl Eq for LSPS5Message
impl StructuralPartialEq for LSPS5Message
Auto Trait Implementations§
impl Freeze for LSPS5Message
impl RefUnwindSafe for LSPS5Message
impl Send for LSPS5Message
impl Sync for LSPS5Message
impl Unpin for LSPS5Message
impl UnwindSafe for LSPS5Message
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