[][src]Struct lrc::tags::TimeTag

pub struct TimeTag(_);

Tags used in LRC which are in the format [mm:ss.xx] or [mm:ss] to represent time.

Methods

impl TimeTag[src]

pub fn new<N: Into<i64>>(timestamp: N) -> TimeTag[src]

Create a TimeTag instance with a number in milliseconds.

pub fn from_str<S: AsRef<str>>(timestamp: S) -> Result<TimeTag, LyricsError>[src]

Create a timestamp with a string.

impl TimeTag[src]

pub fn get_timestamp(self) -> i64[src]

Get the timestamp in milliseconds.

Trait Implementations

impl Clone for TimeTag[src]

impl Copy for TimeTag[src]

impl Debug for TimeTag[src]

impl Display for TimeTag[src]

impl Eq for TimeTag[src]

impl FromStr for TimeTag[src]

type Err = LyricsError

The associated error which can be returned from parsing.

impl Hash for TimeTag[src]

impl Into<i64> for TimeTag[src]

impl Ord for TimeTag[src]

impl PartialEq<TimeTag> for TimeTag[src]

impl PartialOrd<TimeTag> for TimeTag[src]

impl StructuralEq for TimeTag[src]

impl StructuralPartialEq for TimeTag[src]

Auto Trait Implementations

impl RefUnwindSafe for TimeTag

impl Send for TimeTag

impl Sync for TimeTag

impl Unpin for TimeTag

impl UnwindSafe for TimeTag

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.