pub struct R2ImportOptions {Show 13 fields
pub concurrency: usize,
pub check_only: bool,
pub resume: bool,
pub fast_list: bool,
pub stream_merge: bool,
pub keys: Vec<String>,
pub keys_file: Option<PathBuf>,
pub start_after: Option<String>,
pub scan_prefix: Option<String>,
pub state_file: Option<PathBuf>,
pub max_objects: Option<usize>,
pub progress_every: usize,
pub scan_delay_ms: u64,
}Fields§
§concurrency: usize§check_only: bool§resume: bool§fast_list: bool§stream_merge: bool§keys: Vec<String>§keys_file: Option<PathBuf>§start_after: Option<String>§scan_prefix: Option<String>§state_file: Option<PathBuf>§max_objects: Option<usize>§progress_every: usize§scan_delay_ms: u64Trait Implementations§
Source§impl Clone for R2ImportOptions
impl Clone for R2ImportOptions
Source§fn clone(&self) -> R2ImportOptions
fn clone(&self) -> R2ImportOptions
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 moreSource§impl Debug for R2ImportOptions
impl Debug for R2ImportOptions
Source§impl Default for R2ImportOptions
impl Default for R2ImportOptions
Source§fn default() -> R2ImportOptions
fn default() -> R2ImportOptions
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for R2ImportOptions
impl RefUnwindSafe for R2ImportOptions
impl Send for R2ImportOptions
impl Sync for R2ImportOptions
impl Unpin for R2ImportOptions
impl UnsafeUnpin for R2ImportOptions
impl UnwindSafe for R2ImportOptions
Blanket Implementations§
Source§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
Source§impl<'a, T> AsTaggedExplicit<'a> for Twhere
T: 'a,
impl<'a, T> AsTaggedExplicit<'a> for Twhere
T: 'a,
Source§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
Source§impl<'a, T> AsTaggedImplicit<'a> for Twhere
T: 'a,
impl<'a, T> AsTaggedImplicit<'a> for Twhere
T: 'a,
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more