1
- use std:: time:: Duration ;
1
+ use std:: { marker :: PhantomData , time:: Duration } ;
2
2
3
3
use bson:: { Bson , Document , Timestamp } ;
4
+ use serde:: de:: DeserializeOwned ;
4
5
5
6
use super :: { action_impl, deeplink, option_setters, ExplicitSession , ImplicitSession } ;
6
7
use crate :: {
@@ -96,11 +97,11 @@ where
96
97
/// Change streams require either a "majority" read concern or no read concern. Anything else
97
98
/// will cause a server error.
98
99
///
99
- /// `await` will return d[`Result<ChangeStream<ChangeStreamEvent<Document >>>`] or
100
- /// d[`Result<SessionChangeStream<ChangeStreamEvent<Document >>>`] if a
100
+ /// `await` will return d[`Result<ChangeStream<ChangeStreamEvent<T >>>`] or
101
+ /// d[`Result<SessionChangeStream<ChangeStreamEvent<T >>>`] if a
101
102
/// [`ClientSession`] has been provided.
102
103
#[ deeplink]
103
- pub fn watch ( & self ) -> Watch {
104
+ pub fn watch ( & self ) -> Watch < T > {
104
105
Watch :: new ( self . client ( ) , self . namespace ( ) . into ( ) )
105
106
}
106
107
}
@@ -153,24 +154,25 @@ where
153
154
///
154
155
/// Change streams require either a "majority" read concern or no read concern. Anything else
155
156
/// will cause a server error.
156
- pub fn watch ( & self ) -> Watch {
157
+ pub fn watch ( & self ) -> Watch < T > {
157
158
self . async_collection . watch ( )
158
159
}
159
160
}
160
161
161
162
/// Starts a new [`ChangeStream`] that receives events for all changes in a given scope. Create by
162
163
/// calling [`Client::watch`], [`Database::watch`], or [`Collection::watch`].
163
164
#[ must_use]
164
- pub struct Watch < ' a , S = ImplicitSession > {
165
+ pub struct Watch < ' a , T = Document , S = ImplicitSession > {
165
166
client : & ' a Client ,
166
167
target : AggregateTarget ,
167
168
pipeline : Vec < Document > ,
168
169
options : Option < ChangeStreamOptions > ,
169
170
session : S ,
170
171
cluster : bool ,
172
+ phantom : PhantomData < fn ( ) -> T > ,
171
173
}
172
174
173
- impl < ' a > Watch < ' a , ImplicitSession > {
175
+ impl < ' a , T > Watch < ' a , T , ImplicitSession > {
174
176
fn new ( client : & ' a Client , target : AggregateTarget ) -> Self {
175
177
Self {
176
178
client,
@@ -179,6 +181,7 @@ impl<'a> Watch<'a, ImplicitSession> {
179
181
options : None ,
180
182
session : ImplicitSession ,
181
183
cluster : false ,
184
+ phantom : PhantomData ,
182
185
}
183
186
}
184
187
@@ -190,6 +193,7 @@ impl<'a> Watch<'a, ImplicitSession> {
190
193
options : None ,
191
194
session : ImplicitSession ,
192
195
cluster : true ,
196
+ phantom : PhantomData ,
193
197
}
194
198
}
195
199
}
@@ -235,28 +239,29 @@ impl<'a, S> Watch<'a, S> {
235
239
) ;
236
240
}
237
241
238
- impl < ' a > Watch < ' a , ImplicitSession > {
242
+ impl < ' a , T > Watch < ' a , T , ImplicitSession > {
239
243
/// Use the provided ['ClientSession'].
240
244
pub fn session < ' s > (
241
245
self ,
242
246
session : impl Into < & ' s mut ClientSession > ,
243
- ) -> Watch < ' a , ExplicitSession < ' s > > {
247
+ ) -> Watch < ' a , T , ExplicitSession < ' s > > {
244
248
Watch {
245
249
client : self . client ,
246
250
target : self . target ,
247
251
pipeline : self . pipeline ,
248
252
options : self . options ,
249
253
session : ExplicitSession ( session. into ( ) ) ,
250
254
cluster : self . cluster ,
255
+ phantom : PhantomData ,
251
256
}
252
257
}
253
258
}
254
259
255
- #[ action_impl( sync = crate :: sync:: ChangeStream <ChangeStreamEvent <Document >>) ]
256
- impl < ' a > Action for Watch < ' a , ImplicitSession > {
260
+ #[ action_impl( sync = crate :: sync:: ChangeStream <ChangeStreamEvent <T >>) ]
261
+ impl < ' a , T : DeserializeOwned + Unpin + Send + Sync > Action for Watch < ' a , T , ImplicitSession > {
257
262
type Future = WatchFuture ;
258
263
259
- async fn execute ( mut self ) -> Result < ChangeStream < ChangeStreamEvent < Document > > > {
264
+ async fn execute ( mut self ) -> Result < ChangeStream < ChangeStreamEvent < T > > > {
260
265
resolve_options ! (
261
266
self . client,
262
267
self . options,
@@ -273,11 +278,11 @@ impl<'a> Action for Watch<'a, ImplicitSession> {
273
278
}
274
279
}
275
280
276
- #[ action_impl( sync = crate :: sync:: SessionChangeStream <ChangeStreamEvent <Document >>) ]
277
- impl < ' a > Action for Watch < ' a , ExplicitSession < ' a > > {
281
+ #[ action_impl( sync = crate :: sync:: SessionChangeStream <ChangeStreamEvent <T >>) ]
282
+ impl < ' a , T : DeserializeOwned + Unpin + Send + Sync > Action for Watch < ' a , T , ExplicitSession < ' a > > {
278
283
type Future = WatchSessionFuture ;
279
284
280
- async fn execute ( mut self ) -> Result < SessionChangeStream < ChangeStreamEvent < Document > > > {
285
+ async fn execute ( mut self ) -> Result < SessionChangeStream < ChangeStreamEvent < T > > > {
281
286
resolve_read_concern_with_session ! ( self . client, self . options, Some ( & mut * self . session. 0 ) ) ?;
282
287
resolve_selection_criteria_with_session ! (
283
288
self . client,
0 commit comments