Struct midi_file::Settings[][src]

pub struct Settings { /* fields omitted */ }

Optionally provide settings to the MidiFile. This is a ‘builder’ struct.

Example

use midi_file::{MidiFile, Settings};
use midi_file::file::{Format, Division, QuarterNoteDivision};

let settings = Settings::new()
    .running_status(true)
    .format(Format::Single)
    .divisions(Division::QuarterNote(QuarterNoteDivision::new(244)));
let _m = MidiFile::new_with_settings(settings);

Implementations

impl Settings[src]

pub fn new() -> Self[src]

Create a Settings object with default settings.

pub fn running_status(self, value: bool) -> Self[src]

Set the running_status setting. When this is true, the MidiFile will not write redundant status bytes.

pub fn format(self, value: Format) -> Self[src]

Set the format setting. MIDI files can be one of three types, see Format.

pub fn divisions(self, value: Division) -> Self[src]

Set the division setting, see Division.

Trait Implementations

impl Clone for Settings[src]

impl Copy for Settings[src]

impl Debug for Settings[src]

impl Default for Settings[src]

impl Eq for Settings[src]

impl Hash for Settings[src]

impl Ord for Settings[src]

impl PartialEq<Settings> for Settings[src]

impl PartialOrd<Settings> for Settings[src]

impl StructuralEq for Settings[src]

impl StructuralPartialEq for Settings[src]

Auto Trait Implementations

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