pub struct SubscriptionResponse {
pub query_id: String,
pub source_id: String,
pub receiver: Box<dyn ChangeReceiver<SourceEventWrapper>>,
pub bootstrap_receiver: Option<BootstrapEventReceiver>,
}Expand description
Subscription response for source subscriptions Subscription response from Source to Query
Fields§
§query_id: String§source_id: String§receiver: Box<dyn ChangeReceiver<SourceEventWrapper>>§bootstrap_receiver: Option<BootstrapEventReceiver>Auto Trait Implementations§
impl Freeze for SubscriptionResponse
impl !RefUnwindSafe for SubscriptionResponse
impl Send for SubscriptionResponse
impl Sync for SubscriptionResponse
impl Unpin for SubscriptionResponse
impl UnsafeUnpin for SubscriptionResponse
impl !UnwindSafe for SubscriptionResponse
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