[][src]Struct oapth::MigrationGroup

pub struct MigrationGroup { /* fields omitted */ }

A set of unique migrations

Implementations

impl MigrationGroup[src]

pub fn new<I>(version: i32, name: I) -> Self where
    I: Into<String>, 
[src]

Creates a new instance from all necessary parameters.

pub fn name(&self) -> &str[src]

Name

Example

use oapth::doc_tests::migration_group;
assert_eq!(migration_group().name(), "initial");

pub const fn version(&self) -> i32[src]

Version

Example

use oapth::doc_tests::migration_group;
assert_eq!(migration_group().version(), 1);

Trait Implementations

impl Debug for MigrationGroup[src]

impl Eq for MigrationGroup[src]

impl Ord for MigrationGroup[src]

impl PartialEq<MigrationGroup> for MigrationGroup[src]

impl PartialOrd<MigrationGroup> for MigrationGroup[src]

impl StructuralEq for MigrationGroup[src]

impl StructuralPartialEq for MigrationGroup[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.