We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3de35f7 commit 4178388Copy full SHA for 4178388
src/errors.rs
@@ -139,6 +139,7 @@ pub enum ErrorCode {
139
MissingAuthorizationHeader,
140
TaskNotFound,
141
DumpNotFound,
142
+ MssingMasterKey,
143
NoSpaceLeftOnDevice,
144
PayloadTooLarge,
145
UnretrievableDocument,
src/tasks.rs
@@ -255,6 +255,7 @@ impl Task {
255
/// # index.delete().await.unwrap().wait_for_completion(&client, None, None).await.unwrap();
256
/// # });
257
/// ```
258
+ #[allow(clippy::result_large_err)] // Since `self` has been consumed, this is not an issue
259
pub fn try_make_index(self, client: &Client) -> Result<Index, Self> {
260
match self {
261
Self::Succeeded {
0 commit comments