#[non_exhaustive]pub enum ObjectConfiguration {
PrefixList(Box<PrefixList>),
Manifest(Box<Manifest>),
}Expand description
Specifies objects to be transformed in the BucketOperation.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
PrefixList(Box<PrefixList>)
Specifies objects matching a prefix set.
Manifest(Box<Manifest>)
Specifies objects in a manifest file.
Trait Implementations§
Source§impl Clone for ObjectConfiguration
impl Clone for ObjectConfiguration
Source§fn clone(&self) -> ObjectConfiguration
fn clone(&self) -> ObjectConfiguration
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ObjectConfiguration
impl Debug for ObjectConfiguration
Source§impl PartialEq for ObjectConfiguration
impl PartialEq for ObjectConfiguration
impl StructuralPartialEq for ObjectConfiguration
Auto Trait Implementations§
impl Freeze for ObjectConfiguration
impl RefUnwindSafe for ObjectConfiguration
impl Send for ObjectConfiguration
impl Sync for ObjectConfiguration
impl Unpin for ObjectConfiguration
impl UnsafeUnpin for ObjectConfiguration
impl UnwindSafe for ObjectConfiguration
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more