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