Struct git_cliff_core::config::LinkParser
source · [−]Expand description
Parser for extracting links in commits.
Fields
pattern: Regex
Regex for finding links in the commit message.
href: String
The string used to generate the link URL.
text: Option<String>
The string used to generate the link text.
Trait Implementations
sourceimpl Clone for LinkParser
impl Clone for LinkParser
sourcefn clone(&self) -> LinkParser
fn clone(&self) -> LinkParser
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for LinkParser
impl Debug for LinkParser
sourceimpl<'de> Deserialize<'de> for LinkParser
impl<'de> Deserialize<'de> for LinkParser
sourcefn 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
sourceimpl Serialize for LinkParser
impl Serialize for LinkParser
Auto Trait Implementations
impl RefUnwindSafe for LinkParser
impl Send for LinkParser
impl Sync for LinkParser
impl Unpin for LinkParser
impl UnwindSafe for LinkParser
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more