pub struct UnifiedScanRunRow {
pub run_id: String,
pub started_at: String,
pub finished_at: Option<String>,
pub outcome: String,
pub audio_scan_id: Option<String>,
pub daw_scan_id: Option<String>,
pub preset_scan_id: Option<String>,
pub pdf_scan_id: Option<String>,
pub roots_json: String,
pub last_directory_path: Option<String>,
pub error_message: Option<String>,
}Expand description
One row persisted for the last unified home-tree scan (SQLite unified_scan_run.id is always 1).
Fields§
§run_id: String§started_at: String§finished_at: Option<String>§outcome: String§audio_scan_id: Option<String>§daw_scan_id: Option<String>§preset_scan_id: Option<String>§pdf_scan_id: Option<String>§roots_json: String§last_directory_path: Option<String>§error_message: Option<String>Trait Implementations§
Source§impl Clone for UnifiedScanRunRow
impl Clone for UnifiedScanRunRow
Source§fn clone(&self) -> UnifiedScanRunRow
fn clone(&self) -> UnifiedScanRunRow
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 UnifiedScanRunRow
impl Debug for UnifiedScanRunRow
Auto Trait Implementations§
impl Freeze for UnifiedScanRunRow
impl RefUnwindSafe for UnifiedScanRunRow
impl Send for UnifiedScanRunRow
impl Sync for UnifiedScanRunRow
impl Unpin for UnifiedScanRunRow
impl UnwindSafe for UnifiedScanRunRow
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§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