pub struct WatchRequest;
Trait Implementations§
Source§impl Debug for WatchRequest
impl Debug for WatchRequest
Source§impl<'de> Deserialize<'de> for WatchRequest
impl<'de> Deserialize<'de> for WatchRequest
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<WatchRequest> for GatewayRequest
impl From<WatchRequest> for GatewayRequest
Source§fn from(original: WatchRequest) -> GatewayRequest
fn from(original: WatchRequest) -> GatewayRequest
Converts to this type from the input type.
Source§impl From<WatchRequest> for P2pRequest
impl From<WatchRequest> for P2pRequest
Source§fn from(original: WatchRequest) -> P2pRequest
fn from(original: WatchRequest) -> P2pRequest
Converts to this type from the input type.
Source§impl From<WatchRequest> for StoreRequest
impl From<WatchRequest> for StoreRequest
Source§fn from(original: WatchRequest) -> StoreRequest
fn from(original: WatchRequest) -> StoreRequest
Converts to this type from the input type.
Source§impl Msg<GatewayService> for WatchRequest
impl Msg<GatewayService> for WatchRequest
Source§type Response = WatchResponse
type Response = WatchResponse
The type for the response
Source§type Update = WatchRequest
type Update = WatchRequest
The type for request updates Read more
Source§type Pattern = ServerStreaming
type Pattern = ServerStreaming
The interaction pattern for this message with this service.
Source§impl Msg<P2pService> for WatchRequest
impl Msg<P2pService> for WatchRequest
Source§type Response = WatchResponse
type Response = WatchResponse
The type for the response
Source§type Update = WatchRequest
type Update = WatchRequest
The type for request updates Read more
Source§type Pattern = ServerStreaming
type Pattern = ServerStreaming
The interaction pattern for this message with this service.
Source§impl Msg<StoreService> for WatchRequest
impl Msg<StoreService> for WatchRequest
Source§type Response = WatchResponse
type Response = WatchResponse
The type for the response
Source§type Update = WatchRequest
type Update = WatchRequest
The type for request updates Read more
Source§type Pattern = ServerStreaming
type Pattern = ServerStreaming
The interaction pattern for this message with this service.
Source§impl Serialize for WatchRequest
impl Serialize for WatchRequest
Source§impl TryFrom<GatewayRequest> for WatchRequest
impl TryFrom<GatewayRequest> for WatchRequest
Source§impl TryFrom<P2pRequest> for WatchRequest
impl TryFrom<P2pRequest> for WatchRequest
Source§impl TryFrom<StoreRequest> for WatchRequest
impl TryFrom<StoreRequest> for WatchRequest
Auto Trait Implementations§
impl Freeze for WatchRequest
impl RefUnwindSafe for WatchRequest
impl Send for WatchRequest
impl Sync for WatchRequest
impl Unpin for WatchRequest
impl UnwindSafe for WatchRequest
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