Struct ConfigMigrator

Source
pub struct ConfigMigrator<'a> { /* private fields */ }
Expand description

Struct that contains some configuration on how to migrate a config

let migrator = ConfigMigrator::new("version").with_default_version(0);

let (config, migration_occured) = migrator.migrate::<ConfigV2>(config_str).unwrap();

Implementations§

Source§

impl<'a> ConfigMigrator<'a>

Source

pub const fn new(version_key: &'a str) -> Self

Creates a new ConfigMigrator using the provided key to find the version of the config

Source

pub const fn with_default_version(self, default_version: i64) -> Self

Adds a default version to use if it cannot be read from the config file

Source

pub fn migrate_config<T: Migrate>( &self, config_str: &str, ) -> Result<(T, bool), Error>

Handles the migration between versions of a configuration

On success, returns a tuple with the config and whether any migrations were performed. Errors if it could not read the version (and no default was provided), if the version failed to match any of the config structs, or if the config file failed to parse.

Auto Trait Implementations§

§

impl<'a> Freeze for ConfigMigrator<'a>

§

impl<'a> RefUnwindSafe for ConfigMigrator<'a>

§

impl<'a> Send for ConfigMigrator<'a>

§

impl<'a> Sync for ConfigMigrator<'a>

§

impl<'a> Unpin for ConfigMigrator<'a>

§

impl<'a> UnwindSafe for ConfigMigrator<'a>

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.

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, 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.