Struct soundfont::data::info::Info[][src]

pub struct Info {
    pub version: Version,
    pub sound_engine: String,
    pub bank_name: String,
    pub rom_name: Option<String>,
    pub rom_version: Option<Version>,
    pub creation_date: Option<String>,
    pub engineers: Option<String>,
    pub product: Option<String>,
    pub copyright: Option<String>,
    pub comments: Option<String>,
    pub software: Option<String>,
}

Supplemental Information

Fields

version: Version

Refers to the version of the Sound Font RIFF file

sound_engine: String

Refers to the target Sound Engine

bank_name: String

Refers to the Sound Font Bank Name

rom_name: Option<String>

Refers to the Sound ROM Name

rom_version: Option<Version>

Refers to the Sound ROM Version

creation_date: Option<String>

Refers to the Date of Creation of the Bank

engineers: Option<String>

Sound Designers and Engineers for the Bank

product: Option<String>

Product for which the Bank was intended

copyright: Option<String>

Contains any Copyright message

comments: Option<String>

Contains any Comments on the Bank

software: Option<String>

The SoundFont tools used to create and alter the bank

Implementations

impl Info[src]

pub fn read<F: Read + Seek>(
    info: &Chunk,
    file: &mut F
) -> Result<Self, ParseError>
[src]

Trait Implementations

impl Debug for Info[src]

Auto Trait Implementations

impl RefUnwindSafe for Info

impl Send for Info

impl Sync for Info

impl Unpin for Info

impl UnwindSafe for Info

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, 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.