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
/// Alias for [Client::list_all_indexes_raw_with].
420
+
/// Alias for [`Client::list_all_indexes_raw_with`].
418
421
pubasyncfnget_indexes_raw_with(
419
422
&self,
420
423
indexes_query:&IndexesQuery<'_>,
@@ -549,7 +552,7 @@ impl Client {
549
552
550
553
/// Get the API [Keys](Key) from Meilisearch with parameters.
551
554
///
552
-
/// See [Client::create_key], [Client::get_key], and the [meilisearch documentation](https://docs.meilisearch.com/reference/api/keys.html#get-all-keys).
555
+
/// See [`Client::create_key`], [`Client::get_key`], and the [meilisearch documentation](https://docs.meilisearch.com/reference/api/keys.html#get-all-keys).
553
556
///
554
557
/// # Example
555
558
///
@@ -583,7 +586,7 @@ impl Client {
583
586
584
587
/// Get the API [Keys](Key) from Meilisearch.
585
588
///
586
-
/// See [Client::create_key], [Client::get_key], and the [meilisearch documentation](https://docs.meilisearch.com/reference/api/keys.html#get-all-keys).
589
+
/// See [`Client::create_key`], [`Client::get_key`], and the [meilisearch documentation](https://docs.meilisearch.com/reference/api/keys.html#get-all-keys).
587
590
///
588
591
/// # Example
589
592
///
@@ -614,7 +617,7 @@ impl Client {
614
617
615
618
/// Get one API [Key] from Meilisearch.
616
619
///
617
-
/// See also [Client::create_key], [Client::get_keys], and the [meilisearch documentation](https://docs.meilisearch.com/reference/api/keys.html#get-one-key).
620
+
/// See also [`Client::create_key`], [`Client::get_keys`], and the [meilisearch documentation](https://docs.meilisearch.com/reference/api/keys.html#get-one-key).
618
621
///
619
622
/// # Example
620
623
///
@@ -646,7 +649,7 @@ impl Client {
646
649
647
650
/// Delete an API [Key] from Meilisearch.
648
651
///
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).
652
+
/// 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
653
///
651
654
/// # Example
652
655
///
@@ -681,7 +684,7 @@ impl Client {
681
684
682
685
/// Create an API [Key] in Meilisearch.
683
686
///
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).
687
+
/// 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
688
///
686
689
/// # Example
687
690
///
@@ -718,7 +721,7 @@ impl Client {
718
721
719
722
/// Update an API [Key] in Meilisearch.
720
723
///
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).
724
+
/// 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
725
///
723
726
/// # Example
724
727
///
@@ -787,9 +790,9 @@ impl Client {
787
790
///
788
791
/// `timeout` = The maximum time to wait for processing to complete. **Default = 5000ms**
789
792
///
790
-
/// If the waited time exceeds `timeout` then an [Error::Timeout] will be returned.
793
+
/// If the waited time exceeds `timeout` then an [`Error::Timeout`] will be returned.
791
794
///
792
-
/// See also [Index::wait_for_task, Task::wait_for_completion, TaskInfo::wait_for_completion].
795
+
/// See also [`Index::wait_for_task`, `Task::wait_for_completion`, `TaskInfo::wait_for_completion`].
793
796
///
794
797
/// # Example
795
798
///
@@ -917,7 +920,7 @@ impl Client {
917
920
Ok(tasks)
918
921
}
919
922
920
-
/// Cancel tasks with filters [TasksCancelQuery].
923
+
/// Cancel tasks with filters [`TasksCancelQuery`].
921
924
///
922
925
/// # Example
923
926
///
@@ -953,7 +956,7 @@ impl Client {
953
956
Ok(tasks)
954
957
}
955
958
956
-
/// Delete tasks with filters [TasksDeleteQuery].
959
+
/// Delete tasks with filters [`TasksDeleteQuery`].
0 commit comments