Struct mp4ameta::ident::FreeformIdent[][src]

pub struct FreeformIdent<'a> {
    pub mean: &'a str,
    pub name: &'a str,
}

An identifier of a freeform (----) atom containing borrowd mean and name strings.

Fields

mean: &'a str

The mean string, typically in reverse domain notation.

name: &'a str

The name string used to identify the freeform atom.

Implementations

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

pub const fn new(mean: &'a str, name: &'a str) -> Self[src]

Creates a new freeform ident containing the mean and name as borrowed strings.

Trait Implementations

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

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

impl Display for FreeformIdent<'_>[src]

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

impl From<&'_ FreeformIdent<'_>> for DataIdent[src]

impl From<FreeformIdent<'_>> for DataIdent[src]

impl Ident for FreeformIdent<'_>[src]

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

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

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

Auto Trait Implementations

impl<'a> RefUnwindSafe for FreeformIdent<'a>

impl<'a> Send for FreeformIdent<'a>

impl<'a> Sync for FreeformIdent<'a>

impl<'a> Unpin for FreeformIdent<'a>

impl<'a> UnwindSafe for FreeformIdent<'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.