Skip to content

Commit

Permalink
object_store::GetOptions derive Clone (#6361)
Browse files Browse the repository at this point in the history
* object_store::GetOptions derive Clone

* undo wrong submodule

* bump
  • Loading branch information
samuelcolvin committed Sep 6, 2024
1 parent 9ff7d8b commit 2d25d65
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion object_store/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -911,7 +911,7 @@ pub struct ObjectMeta {
}

/// Options for a get request, such as range
#[derive(Debug, Default)]
#[derive(Debug, Default, Clone)]
pub struct GetOptions {
/// Request will succeed if the `ObjectMeta::e_tag` matches
/// otherwise returning [`Error::Precondition`]
Expand Down

0 comments on commit 2d25d65

Please sign in to comment.