[][src]Struct lrc::tags::IDTag

pub struct IDTag { /* fields omitted */ }

Tags used in LRC which are in the format [label: text].

Methods

impl IDTag[src]

pub fn from_string<L: Into<String>, T: Into<String>>(
    label: L,
    text: T
) -> Result<IDTag, LyricsError>
[src]

Create an IDTag instance from strings.

pub unsafe fn from_string_unchecked<L: Into<String>, T: Into<String>>(
    label: L,
    text: T
) -> IDTag
[src]

Create an IDTag instance from strings without checking.

Trait Implementations

impl Clone for IDTag[src]

impl Debug for IDTag[src]

impl Display for IDTag[src]

impl Eq for IDTag[src]

impl Ord for IDTag[src]

impl PartialEq<IDTag> for IDTag[src]

impl PartialOrd<IDTag> for IDTag[src]

impl StructuralEq for IDTag[src]

Auto Trait Implementations

impl RefUnwindSafe for IDTag

impl Send for IDTag

impl Sync for IDTag

impl Unpin for IDTag

impl UnwindSafe for IDTag

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.