pub struct SubscriptionRequest {
pub handler_type: String,
pub handler_id: String,
}Expand description
This is the struct that we serialize and send to the server serialized to request a new subscription
Fields§
§handler_type: String§handler_id: StringTrait Implementations§
Source§impl Debug for SubscriptionRequest
impl Debug for SubscriptionRequest
Source§impl<'de> Deserialize<'de> for SubscriptionRequest
impl<'de> Deserialize<'de> for SubscriptionRequest
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 Serialize for SubscriptionRequest
impl Serialize for SubscriptionRequest
Source§impl<S, P> Service<SubscriptionRequest> for Service<S, P>where
S: MembershipStorage + 'static,
P: ObjectPlacement + 'static,
Service implementation to handle SubscriptionRequest messages
impl<S, P> Service<SubscriptionRequest> for Service<S, P>where
S: MembershipStorage + 'static,
P: ObjectPlacement + 'static,
Service implementation to handle SubscriptionRequest messages
Source§type Response = SubscriptionResponseIter
type Response = SubscriptionResponseIter
Responses given by the service.
Source§type Error = ResponseError
type Error = ResponseError
Errors produced by the service.
Source§type Future = Pin<Box<dyn Future<Output = Result<<Service<S, P> as Service<SubscriptionRequest>>::Response, <Service<S, P> as Service<SubscriptionRequest>>::Error>> + Send>>
type Future = Pin<Box<dyn Future<Output = Result<<Service<S, P> as Service<SubscriptionRequest>>::Response, <Service<S, P> as Service<SubscriptionRequest>>::Error>> + Send>>
The future response value.
Auto Trait Implementations§
impl Freeze for SubscriptionRequest
impl RefUnwindSafe for SubscriptionRequest
impl Send for SubscriptionRequest
impl Sync for SubscriptionRequest
impl Unpin for SubscriptionRequest
impl UnsafeUnpin for SubscriptionRequest
impl UnwindSafe for SubscriptionRequest
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> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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