pub struct VersionRequest;
Trait Implementations§
Source§impl Debug for VersionRequest
impl Debug for VersionRequest
Source§impl<'de> Deserialize<'de> for VersionRequest
impl<'de> Deserialize<'de> for VersionRequest
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 From<VersionRequest> for GatewayRequest
impl From<VersionRequest> for GatewayRequest
Source§fn from(original: VersionRequest) -> GatewayRequest
fn from(original: VersionRequest) -> GatewayRequest
Converts to this type from the input type.
Source§impl From<VersionRequest> for P2pRequest
impl From<VersionRequest> for P2pRequest
Source§fn from(original: VersionRequest) -> P2pRequest
fn from(original: VersionRequest) -> P2pRequest
Converts to this type from the input type.
Source§impl From<VersionRequest> for StoreRequest
impl From<VersionRequest> for StoreRequest
Source§fn from(original: VersionRequest) -> StoreRequest
fn from(original: VersionRequest) -> StoreRequest
Converts to this type from the input type.
Source§impl RpcMsg<GatewayService> for VersionRequest
impl RpcMsg<GatewayService> for VersionRequest
Source§type Response = VersionResponse
type Response = VersionResponse
The type for the response Read more
Source§impl RpcMsg<P2pService> for VersionRequest
impl RpcMsg<P2pService> for VersionRequest
Source§type Response = VersionResponse
type Response = VersionResponse
The type for the response Read more
Source§impl RpcMsg<StoreService> for VersionRequest
impl RpcMsg<StoreService> for VersionRequest
Source§type Response = VersionResponse
type Response = VersionResponse
The type for the response Read more
Source§impl Serialize for VersionRequest
impl Serialize for VersionRequest
Source§impl TryFrom<GatewayRequest> for VersionRequest
impl TryFrom<GatewayRequest> for VersionRequest
Source§impl TryFrom<P2pRequest> for VersionRequest
impl TryFrom<P2pRequest> for VersionRequest
Source§impl TryFrom<StoreRequest> for VersionRequest
impl TryFrom<StoreRequest> for VersionRequest
Auto Trait Implementations§
impl Freeze for VersionRequest
impl RefUnwindSafe for VersionRequest
impl Send for VersionRequest
impl Sync for VersionRequest
impl Unpin for VersionRequest
impl UnwindSafe for VersionRequest
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more