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
466: Add Debug and Clone to all public API structs, and some CS r=bidoubiwa a=omid
# Pull Request
## What does this PR do?
- Add Debug and Clone to all public API structs
- some code style
Co-authored-by: Omid Rad <[email protected]>
Co-authored-by: Omid Rad <[email protected]>
/// Alias for [Client::list_all_indexes_raw_with].
417
+
/// Alias for [`Client::list_all_indexes_raw_with`].
418
418
pubasyncfnget_indexes_raw_with(
419
419
&self,
420
420
indexes_query:&IndexesQuery<'_>,
@@ -549,7 +549,7 @@ impl Client {
549
549
550
550
/// Get the API [Keys](Key) from Meilisearch with parameters.
551
551
///
552
-
/// See [Client::create_key], [Client::get_key], and the [meilisearch documentation](https://docs.meilisearch.com/reference/api/keys.html#get-all-keys).
552
+
/// See [`Client::create_key`], [`Client::get_key`], and the [meilisearch documentation](https://docs.meilisearch.com/reference/api/keys.html#get-all-keys).
553
553
///
554
554
/// # Example
555
555
///
@@ -583,7 +583,7 @@ impl Client {
583
583
584
584
/// Get the API [Keys](Key) from Meilisearch.
585
585
///
586
-
/// See [Client::create_key], [Client::get_key], and the [meilisearch documentation](https://docs.meilisearch.com/reference/api/keys.html#get-all-keys).
586
+
/// See [`Client::create_key`], [`Client::get_key`], and the [meilisearch documentation](https://docs.meilisearch.com/reference/api/keys.html#get-all-keys).
587
587
///
588
588
/// # Example
589
589
///
@@ -614,7 +614,7 @@ impl Client {
614
614
615
615
/// Get one API [Key] from Meilisearch.
616
616
///
617
-
/// See also [Client::create_key], [Client::get_keys], and the [meilisearch documentation](https://docs.meilisearch.com/reference/api/keys.html#get-one-key).
617
+
/// See also [`Client::create_key`], [`Client::get_keys`], and the [meilisearch documentation](https://docs.meilisearch.com/reference/api/keys.html#get-one-key).
618
618
///
619
619
/// # Example
620
620
///
@@ -646,7 +646,7 @@ impl Client {
646
646
647
647
/// Delete an API [Key] from Meilisearch.
648
648
///
649
-
/// See also [Client::create_key], [Client::update_key], [Client::get_key], and the [meilisearch documentation](https://docs.meilisearch.com/reference/api/keys.html#delete-a-key).
649
+
/// See also [`Client::create_key`], [`Client::update_key`], [`Client::get_key`], and the [meilisearch documentation](https://docs.meilisearch.com/reference/api/keys.html#delete-a-key).
650
650
///
651
651
/// # Example
652
652
///
@@ -681,7 +681,7 @@ impl Client {
681
681
682
682
/// Create an API [Key] in Meilisearch.
683
683
///
684
-
/// See also [Client::update_key], [Client::delete_key], [Client::get_key], and the [meilisearch documentation](https://docs.meilisearch.com/reference/api/keys.html#create-a-key).
684
+
/// See also [`Client::update_key`], [`Client::delete_key`], [`Client::get_key`], and the [meilisearch documentation](https://docs.meilisearch.com/reference/api/keys.html#create-a-key).
685
685
///
686
686
/// # Example
687
687
///
@@ -718,7 +718,7 @@ impl Client {
718
718
719
719
/// Update an API [Key] in Meilisearch.
720
720
///
721
-
/// See also [Client::create_key], [Client::delete_key], [Client::get_key], and the [meilisearch documentation](https://docs.meilisearch.com/reference/api/keys.html#update-a-key).
721
+
/// See also [`Client::create_key`], [`Client::delete_key`], [`Client::get_key`], and the [meilisearch documentation](https://docs.meilisearch.com/reference/api/keys.html#update-a-key).
722
722
///
723
723
/// # Example
724
724
///
@@ -787,9 +787,9 @@ impl Client {
787
787
///
788
788
/// `timeout` = The maximum time to wait for processing to complete. **Default = 5000ms**
789
789
///
790
-
/// If the waited time exceeds `timeout` then an [Error::Timeout] will be returned.
790
+
/// If the waited time exceeds `timeout` then an [`Error::Timeout`] will be returned.
791
791
///
792
-
/// See also [Index::wait_for_task, Task::wait_for_completion, TaskInfo::wait_for_completion].
792
+
/// See also [`Index::wait_for_task`, `Task::wait_for_completion`, `TaskInfo::wait_for_completion`].
793
793
///
794
794
/// # Example
795
795
///
@@ -917,7 +917,7 @@ impl Client {
917
917
Ok(tasks)
918
918
}
919
919
920
-
/// Cancel tasks with filters [TasksCancelQuery].
920
+
/// Cancel tasks with filters [`TasksCancelQuery`].
921
921
///
922
922
/// # Example
923
923
///
@@ -953,7 +953,7 @@ impl Client {
953
953
Ok(tasks)
954
954
}
955
955
956
-
/// Delete tasks with filters [TasksDeleteQuery].
956
+
/// Delete tasks with filters [`TasksDeleteQuery`].
0 commit comments