pub enum ChapterMergeStrategy {
KeepTimestamps,
ReplaceAll,
SkipOnMismatch,
Interactive,
}Expand description
Strategy for merging new chapters with existing ones
Variants§
KeepTimestamps
Keep existing timestamps, only update names
ReplaceAll
Replace both timestamps and names entirely
SkipOnMismatch
Skip update if counts don’t match
Interactive
Interactively ask user for each file
Trait Implementations§
Source§impl Clone for ChapterMergeStrategy
impl Clone for ChapterMergeStrategy
Source§fn clone(&self) -> ChapterMergeStrategy
fn clone(&self) -> ChapterMergeStrategy
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ChapterMergeStrategy
impl Debug for ChapterMergeStrategy
Source§impl Display for ChapterMergeStrategy
impl Display for ChapterMergeStrategy
Source§impl PartialEq for ChapterMergeStrategy
impl PartialEq for ChapterMergeStrategy
impl Copy for ChapterMergeStrategy
impl Eq for ChapterMergeStrategy
impl StructuralPartialEq for ChapterMergeStrategy
Auto Trait Implementations§
impl Freeze for ChapterMergeStrategy
impl RefUnwindSafe for ChapterMergeStrategy
impl Send for ChapterMergeStrategy
impl Sync for ChapterMergeStrategy
impl Unpin for ChapterMergeStrategy
impl UnwindSafe for ChapterMergeStrategy
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
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 moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
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