pub trait SyncChangeSource: Send + Sync {
// Required method
fn read_changes_async<'life0, 'life1, 'life2, 'async_trait>(
&'life0 self,
session_id: &'life1 str,
connector_id: &'life2 str,
cursor: Option<SyncCursor>,
limit: usize,
) -> Pin<Box<dyn Future<Output = Result<ChangeQueryResult>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
'life2: 'async_trait;
}