pub struct FileSystemCheckBuilder { /* private fields */ }
Expand description
Audit the Delta Table’s active files with the underlying file system. See this module’s documentaiton for more information
Implementations§
source§impl FileSystemCheckBuilder
impl FileSystemCheckBuilder
sourcepub fn new(store: Arc<DeltaObjectStore>, state: DeltaTableState) -> Self
pub fn new(store: Arc<DeltaObjectStore>, state: DeltaTableState) -> Self
Create a new FileSystemCheckBuilder
sourcepub fn with_dry_run(self, dry_run: bool) -> Self
pub fn with_dry_run(self, dry_run: bool) -> Self
Only determine which add actions should be removed. A dry run will not commit actions to the Delta log
Trait Implementations§
source§impl Debug for FileSystemCheckBuilder
impl Debug for FileSystemCheckBuilder
source§impl IntoFuture for FileSystemCheckBuilder
impl IntoFuture for FileSystemCheckBuilder
§type Output = Result<(DeltaTable, FileSystemCheckMetrics), DeltaTableError>
type Output = Result<(DeltaTable, FileSystemCheckMetrics), DeltaTableError>
The output that the future will produce on completion.
§type IntoFuture = Pin<Box<dyn Future<Output = <FileSystemCheckBuilder as IntoFuture>::Output> + Send + 'static, Global>>
type IntoFuture = Pin<Box<dyn Future<Output = <FileSystemCheckBuilder as IntoFuture>::Output> + Send + 'static, Global>>
Which kind of future are we turning this into?
source§fn into_future(self) -> Self::IntoFuture
fn into_future(self) -> Self::IntoFuture
Creates a future from a value. Read more
Auto Trait Implementations§
impl !RefUnwindSafe for FileSystemCheckBuilder
impl Send for FileSystemCheckBuilder
impl Sync for FileSystemCheckBuilder
impl Unpin for FileSystemCheckBuilder
impl !UnwindSafe for FileSystemCheckBuilder
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