Skip to main content

DbError

Enum DbError 

Source
pub enum DbError {
    Connect(Error),
    Migrate(MigrateError),
    Query(Error),
    InvalidEnumValue {
        column: &'static str,
        value: String,
    },
    InvalidMvActuationFinalStatus,
    InvalidJsonShape {
        column: &'static str,
        source: Error,
    },
    TemplateInUse {
        id: i64,
    },
    BackupDestinationExists(PathBuf),
    InvalidBackup(String),
    Io(Error),
    DatabaseInUse(PathBuf),
}
Expand description

Everything that can go wrong opening the database, running migrations, or executing a query.

Variants§

§

Connect(Error)

§

Migrate(MigrateError)

§

Query(Error)

§

InvalidEnumValue

A value read back from a TEXT enum column didn’t match any known variant. This can only happen if the row was written by something other than this crate (or a future version wrote a variant this version doesn’t know about) — the CHECK constraints on every enum-shaped column prevent the database itself from ever storing an invalid value.

Fields

§column: &'static str
§value: String
§

InvalidMvActuationFinalStatus

An MV-actuation finalization API was given crate::models::MvActuationStatus::Pending. Pending is the initial state inserted by crate::models::TuneMvActuationRow::insert_pending, not a terminal result.

§

InvalidJsonShape

A JSON column (tune_runs.template_snapshot_json/tags_json/ timing_metrics_json, dcs_templates.versions_json) held syntactically valid JSON – the schema’s CHECK (json_valid(...)) already guarantees that much – but it didn’t deserialize into the Rust shape the column is supposed to hold. This can happen honestly, not just from external tampering: an older snapshot can predate a field a later release added to its typed representation.

Fields

§column: &'static str
§source: Error
§

TemplateInUse

crate::models::DcsTemplateRow::delete targeted a template that at least one loops row still references. The schema’s ON DELETE RESTRICT foreign key is what actually enforces this; this variant exists so bhtune-cli’s template delete can turn the resulting SQLite foreign-key-violation error into a message naming the template rather than a raw SQL error, without needing its own sqlx dependency just to inspect the error kind.

Fields

§id: i64
§

BackupDestinationExists(PathBuf)

crate::backup::backup_to’s destination already exists. Refused rather than silently overwritten — clobbering a previous backup because of a reused filename would itself be a data-loss bug.

§

InvalidBackup(String)

crate::backup::restore_from (or crate::backup::backup_to’s own post-write check) determined a file is not a usable bhtune backup: it failed PRAGMA integrity_check, or it doesn’t contain a tune_runs table.

§

Io(Error)

A filesystem operation during crate::backup::backup_to/ crate::backup::restore_from (copying, renaming, or removing a file) failed.

§

DatabaseInUse(PathBuf)

crate::backup::restore_from found another connection (in this process or another) still attached to the live database. Restoring while that’s true risks desynchronizing whatever holds it: its view of the file would silently stop matching what’s on disk the moment the restore replaces it.

Trait Implementations§

Source§

impl Debug for DbError

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Display for DbError

Source§

fn fmt(&self, __formatter: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Error for DbError

Source§

fn source(&self) -> Option<&(dyn Error + 'static)>

Returns the lower-level source of this error, if any. Read more
1.0.0 · Source§

fn description(&self) -> &str

👎Deprecated since 1.42.0:

use the Display impl or to_string()

1.0.0 · Source§

fn cause(&self) -> Option<&dyn Error>

👎Deprecated since 1.33.0:

replaced by Error::source, which can support downcasting

Source§

fn provide<'a>(&'a self, request: &mut Request<'a>)

🔬This is a nightly-only experimental API. (error_generic_member_access)
Provides type-based access to context intended for error reports. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

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 more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

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
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more