[][src]Struct git_conventional::Scope

pub struct Scope<'a>(_);

A component of the conventional commit.

Methods

impl<'a> Scope<'a>[src]

pub const fn new_unchecked(value: &'a str) -> Self[src]

See parse for ensuring the data is valid.

pub fn as_str(&self) -> &'a str[src]

Access str representation

impl<'a> Scope<'a>[src]

pub fn parse(sep: &'a str) -> Result<Self, Error>[src]

Parse a str into a Scope.

Trait Implementations

impl<'a> Clone for Scope<'a>[src]

impl<'a> Copy for Scope<'a>[src]

impl<'a> Debug for Scope<'a>[src]

impl<'_> Deref for Scope<'_>[src]

type Target = str

The resulting type after dereferencing.

impl<'_> Display for Scope<'_>[src]

impl<'a> Eq for Scope<'a>[src]

impl<'a> Hash for Scope<'a>[src]

impl<'a> Ord for Scope<'a>[src]

impl<'_, '_> PartialEq<&'_ str> for Scope<'_>[src]

impl<'a> PartialEq<Scope<'a>> for Scope<'a>[src]

impl<'a> PartialOrd<Scope<'a>> for Scope<'a>[src]

impl<'a> StructuralEq for Scope<'a>[src]

impl<'a> StructuralPartialEq for Scope<'a>[src]

Auto Trait Implementations

impl<'a> RefUnwindSafe for Scope<'a>

impl<'a> Send for Scope<'a>

impl<'a> Sync for Scope<'a>

impl<'a> Unpin for Scope<'a>

impl<'a> UnwindSafe for Scope<'a>

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> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> ToString for T where
    T: Display + ?Sized
[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.