pub struct HarnessWithOutput<'a, C, W> { /* private fields */ }
Expand description

A migration harness that writes messages into some output for each applied/reverted migration

Implementations§

source§

impl<'a, C, W> HarnessWithOutput<'a, C, W>

source

pub fn new<DB>(harness: &'a mut C, output: W) -> Selfwhere C: MigrationHarness<DB>, DB: Backend, W: Write,

Create a new HarnessWithOutput that writes to a specific writer

source§

impl<'a, C> HarnessWithOutput<'a, C, Stdout>

source

pub fn write_to_stdout<DB>(harness: &'a mut C) -> Selfwhere C: MigrationHarness<DB>, DB: Backend,

Create a new HarnessWithOutput that writes to stdout

Trait Implementations§

source§

impl<'a, C, W, DB> MigrationHarness<DB> for HarnessWithOutput<'a, C, W>where W: Write, C: MigrationHarness<DB>, DB: Backend,

source§

fn run_migration( &mut self, migration: &dyn Migration<DB> ) -> Result<MigrationVersion<'static>>

Apply a single migration Read more
source§

fn revert_migration( &mut self, migration: &dyn Migration<DB> ) -> Result<MigrationVersion<'static>>

Revert a single migration Read more
source§

fn applied_migrations(&mut self) -> Result<Vec<MigrationVersion<'static>>>

Get a list of already applied migration versions
source§

fn has_pending_migration<S: MigrationSource<DB>>( &mut self, source: S ) -> Result<bool>

Checks if the database represented by the current harness has unapplied migrations
source§

fn run_pending_migrations<S: MigrationSource<DB>>( &mut self, source: S ) -> Result<Vec<MigrationVersion<'_>>>

Execute all unapplied migrations for a given migration source
source§

fn run_next_migration<S: MigrationSource<DB>>( &mut self, source: S ) -> Result<MigrationVersion<'_>>

Execute the next migration from the given migration source
source§

fn revert_all_migrations<S: MigrationSource<DB>>( &mut self, source: S ) -> Result<Vec<MigrationVersion<'_>>>

Revert all applied migrations from a given migration source
source§

fn revert_last_migration<S: MigrationSource<DB>>( &mut self, source: S ) -> Result<MigrationVersion<'static>>

Revert the last migration from a given migration source Read more
source§

fn pending_migrations<S: MigrationSource<DB>>( &mut self, source: S ) -> Result<Vec<Box<dyn Migration<DB>>>>

Get a list of non applied migrations for a specific migration source Read more

Auto Trait Implementations§

§

impl<'a, C, W> !RefUnwindSafe for HarnessWithOutput<'a, C, W>

§

impl<'a, C, W> Send for HarnessWithOutput<'a, C, W>where C: Send, W: Send,

§

impl<'a, C, W> !Sync for HarnessWithOutput<'a, C, W>

§

impl<'a, C, W> Unpin for HarnessWithOutput<'a, C, W>where W: Unpin,

§

impl<'a, C, W> !UnwindSafe for HarnessWithOutput<'a, C, W>

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

const: unstable · source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

const: unstable · source§

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

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

const: unstable · source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

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

const: unstable · 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> IntoSql for T

source§

fn into_sql<T>(self) -> Self::Expressionwhere Self: AsExpression<T> + Sized, T: SqlType + TypedExpressionType,

Convert self to an expression for Diesel’s query builder. Read more
source§

fn as_sql<'a, T>(&'a self) -> <&'a Self as AsExpression<T>>::Expressionwhere &'a Self: AsExpression<T>, T: SqlType + TypedExpressionType,

Convert &self to an expression for Diesel’s query builder. Read more
source§

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

§

type Error = Infallible

The type returned in the event of a conversion error.
const: unstable · source§

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

Performs the conversion.
source§

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

§

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

The type returned in the event of a conversion error.
const: unstable · source§

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

Performs the conversion.
source§

impl<V, T> VZip<V> for Twhere V: MultiLane<T>,

source§

fn vzip(self) -> V