pub struct PutObjectOptions {
pub index: bool,
}Expand description
Options for putting an object.
Fields§
§index: boolWhether to update the FTS search index. Default: true.
Set to false when only metadata changes (e.g. timestamp dedup)
and the body text is identical — skips FTS DELETE + INSERT.
Trait Implementations§
Source§impl Clone for PutObjectOptions
impl Clone for PutObjectOptions
Source§fn clone(&self) -> PutObjectOptions
fn clone(&self) -> PutObjectOptions
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for PutObjectOptions
Source§impl Debug for PutObjectOptions
impl Debug for PutObjectOptions
Source§impl Default for PutObjectOptions
impl Default for PutObjectOptions
impl Eq for PutObjectOptions
Source§impl PartialEq for PutObjectOptions
impl PartialEq for PutObjectOptions
Source§fn eq(&self, other: &PutObjectOptions) -> bool
fn eq(&self, other: &PutObjectOptions) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for PutObjectOptions
Auto Trait Implementations§
impl Freeze for PutObjectOptions
impl RefUnwindSafe for PutObjectOptions
impl Send for PutObjectOptions
impl Sync for PutObjectOptions
impl Unpin for PutObjectOptions
impl UnsafeUnpin for PutObjectOptions
impl UnwindSafe for PutObjectOptions
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