You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// Create a new [`BatchScan`](struct.BatchScan.html) request.
204
+
/// Create a new [`BatchScan`](BatchScan) request.
205
205
///
206
206
/// Once resolved this request will result in a set of scanners over the given keys.
207
207
///
@@ -233,7 +233,7 @@ impl Client {
233
233
)
234
234
}
235
235
236
-
/// Create a new [`DeleteRange`](struct.DeleteRange.html) request.
236
+
/// Create a new [`DeleteRange`](DeleteRange) request.
237
237
///
238
238
/// Once resolved this request will result in the deletion of all keys over the given range.
239
239
///
@@ -254,9 +254,9 @@ impl Client {
254
254
}
255
255
}
256
256
257
-
/// An unresolved [`Client`](struct.Client.html) connection to a TiKV cluster.
257
+
/// An unresolved [`Client`](Client) connection to a TiKV cluster.
258
258
///
259
-
/// Once resolved it will result in a connected [`Client`](struct.Client.html).
259
+
/// Once resolved it will result in a connected [`Client`](Client).
260
260
///
261
261
/// ```rust,no_run
262
262
/// # #![feature(async_await)]
@@ -288,7 +288,7 @@ impl Future for Connect {
288
288
}
289
289
}
290
290
291
-
/// A [`ColumnFamily`](struct.ColumnFamily.html) is an optional parameter for [`raw::Client`](struct.Client.html) requests.
291
+
/// A [`ColumnFamily`](ColumnFamily) is an optional parameter for [`raw::Client`](Client) requests.
292
292
///
293
293
/// TiKV uses RocksDB's `ColumnFamily` support. You can learn more about RocksDB's `ColumnFamily`s [on their wiki](https://github.com/facebook/rocksdb/wiki/Column-Families).
294
294
///
@@ -300,7 +300,7 @@ impl Future for Connect {
300
300
///
301
301
/// Not providing a call a `ColumnFamily` means it will use the default value of `default`.
302
302
///
303
-
/// The best (and only) way to create a [`ColumnFamily`](struct.ColumnFamily.html) is via the `From` implementation:
303
+
/// The best (and only) way to create a [`ColumnFamily`](ColumnFamily) is via the `From` implementation:
304
304
///
305
305
/// ```rust
306
306
/// # use tikv_client::raw::ColumnFamily;
@@ -405,7 +405,7 @@ where
405
405
}
406
406
}
407
407
408
-
/// An unresolved [`Client::get`](struct.Client.html#method.get) request.
408
+
/// An unresolved [`Client::get`](Client::get) request.
409
409
///
410
410
/// Once resolved this request will result in the fetching of the value associated with the given
411
411
/// key.
@@ -420,7 +420,7 @@ impl Get {
420
420
}
421
421
}
422
422
423
-
/// Set the (optional) [`ColumnFamily`](struct.ColumnFamily.html).
423
+
/// Set the (optional) [`ColumnFamily`](ColumnFamily).
0 commit comments