[][src]Struct metaflac::block::Application

pub struct Application {
    pub id: Vec<u8>,
    pub data: Vec<u8>,
}

A structure representing an APPLICATION block.

Fields

id: Vec<u8>

Registered application ID.

data: Vec<u8>

Application data.

Methods

impl Application[src]

pub fn new() -> Application[src]

Returns a new Application with a zero id and no data.

pub fn from_bytes(bytes: &[u8]) -> Application[src]

Parses the bytes as an application block.

pub fn to_bytes(&self) -> Vec<u8>[src]

Returns a vector representation of the application block suitable for writing to a file.

Trait Implementations

impl Clone for Application[src]

impl Eq for Application[src]

impl PartialEq<Application> for Application[src]

impl Debug for Application[src]

Auto Trait Implementations

Blanket Implementations

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> From<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

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.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]