pub enum SectionAlignment {
Matched,
Renamed,
Added,
Removed,
}Expand description
How a section from version A maps to version B.
Variants§
Matched
Same title found in both versions.
Renamed
Different title but high content similarity (≥ 0.85).
Added
Section only exists in version B.
Removed
Section only exists in version A.
Trait Implementations§
Source§impl Clone for SectionAlignment
impl Clone for SectionAlignment
Source§fn clone(&self) -> SectionAlignment
fn clone(&self) -> SectionAlignment
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 SectionAlignment
impl Debug for SectionAlignment
Source§impl<'de> Deserialize<'de> for SectionAlignment
impl<'de> Deserialize<'de> for SectionAlignment
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for SectionAlignment
impl RefUnwindSafe for SectionAlignment
impl Send for SectionAlignment
impl Sync for SectionAlignment
impl Unpin for SectionAlignment
impl UnsafeUnpin for SectionAlignment
impl UnwindSafe for SectionAlignment
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