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
/// Once the process is complete, a dump is created in the [dumps directory](https://docs.meilisearch.com/reference/features/configuration.html#dumps-destination).
46
69
/// If the dumps directory does not exist yet, it will be created.
70
+
///
71
+
/// # Example
72
+
///
73
+
/// ```no_run
74
+
/// # use meilisearch_sdk::{client::*, errors::*, dumps::*};
75
+
/// # use futures_await_test::async_test;
76
+
/// # use std::{thread::sleep, time::Duration};
77
+
/// # futures::executor::block_on(async move {
78
+
/// #
79
+
/// # let client = Client::new("http://localhost:7700", "masterKey");
80
+
/// #
81
+
/// let dump_info = client.create_dump().await.unwrap();
0 commit comments