pub struct RequestHandshake {
pub common: RequestCommon,
}
Expand description
Represents a Handshake-request.
The Handshake-request can be used to retrieve server metadata, such as supported versions, reasoner used, etc.
Fields§
§common: RequestCommon
The common schema of all requests
Trait Implementations§
Source§impl Clone for RequestHandshake
impl Clone for RequestHandshake
Source§fn clone(&self) -> RequestHandshake
fn clone(&self) -> RequestHandshake
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 RequestHandshake
impl Debug for RequestHandshake
Source§impl<'de> Deserialize<'de> for RequestHandshake
impl<'de> Deserialize<'de> for RequestHandshake
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
Auto Trait Implementations§
impl Freeze for RequestHandshake
impl RefUnwindSafe for RequestHandshake
impl Send for RequestHandshake
impl Sync for RequestHandshake
impl Unpin for RequestHandshake
impl UnwindSafe for RequestHandshake
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