mod.rs |
|
298 |
test_migrate_remote_address.rs |
|
17536 |
test_name_utils.rs |
|
10821 |
test_reconcile.rs |
|
26533 |
test_sync_impl.rs |
fn merge(
&self,
incoming: &Self::Record,
local: &Self::Record,
_mirror: &Option<Self::Record>,
) -> MergeResult<Self::Record> {
// If the records are actually identical, or even, we say we merged.
if incoming == local {
MergeResult::Merged { merged: *incoming }
} else {
MergeResult::Forked {
forked: incoming + local,
}
}
}
fn merge_metadata(
&self,
_result: &mut Self::Record,
_other: &Self::Record,
_mirror: &Option<Self::Record>,
) {
// do nothing.
}
// Apply a specific action
fn apply_action(
&self,
_conn: &Connection,
_action: IncomingAction<Self::Record>,
) -> Result<()> {
unreachable!();
}
|
10913 |