Struct lighthouse_protocol::ServerMessage
source · pub struct ServerMessage {
pub code: i32,
pub request_id: Option<i32>,
pub warnings: Vec<String>,
pub response: Option<String>,
pub payload: Payload,
}
Expand description
A message originating from the lighthouse server.
Fields§
§code: i32
§request_id: Option<i32>
§warnings: Vec<String>
§response: Option<String>
§payload: Payload
Trait Implementations§
source§impl Clone for ServerMessage
impl Clone for ServerMessage
source§fn clone(&self) -> ServerMessage
fn clone(&self) -> ServerMessage
Returns a copy 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 ServerMessage
impl Debug for ServerMessage
source§impl<'de> Deserialize<'de> for ServerMessage
impl<'de> Deserialize<'de> for ServerMessage
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
source§impl PartialEq for ServerMessage
impl PartialEq for ServerMessage
source§fn eq(&self, other: &ServerMessage) -> bool
fn eq(&self, other: &ServerMessage) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl Serialize for ServerMessage
impl Serialize for ServerMessage
impl Eq for ServerMessage
impl StructuralPartialEq for ServerMessage
Auto Trait Implementations§
impl Freeze for ServerMessage
impl RefUnwindSafe for ServerMessage
impl Send for ServerMessage
impl Sync for ServerMessage
impl Unpin for ServerMessage
impl UnwindSafe for ServerMessage
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