pub struct SqliteJobSchemaStatus {
pub initialized: bool,
pub version: Option<u32>,
pub current_version: u32,
}Expand description
Read-only status of the durable job database schema.
Fields§
§initialized: boolWhether the database and migration table exist.
version: Option<u32>Highest applied migration.
current_version: u32Migration expected by this build.
Trait Implementations§
Source§impl Clone for SqliteJobSchemaStatus
impl Clone for SqliteJobSchemaStatus
Source§fn clone(&self) -> SqliteJobSchemaStatus
fn clone(&self) -> SqliteJobSchemaStatus
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 SqliteJobSchemaStatus
Source§impl Debug for SqliteJobSchemaStatus
impl Debug for SqliteJobSchemaStatus
impl Eq for SqliteJobSchemaStatus
Source§impl PartialEq for SqliteJobSchemaStatus
impl PartialEq for SqliteJobSchemaStatus
impl StructuralPartialEq for SqliteJobSchemaStatus
Auto Trait Implementations§
impl Freeze for SqliteJobSchemaStatus
impl RefUnwindSafe for SqliteJobSchemaStatus
impl Send for SqliteJobSchemaStatus
impl Sync for SqliteJobSchemaStatus
impl Unpin for SqliteJobSchemaStatus
impl UnsafeUnpin for SqliteJobSchemaStatus
impl UnwindSafe for SqliteJobSchemaStatus
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