ot-tools-io 0.11.2

A library crate for reading/writing binary data files used by the Elektron Octatrack DPS-1.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/*
SPDX-License-Identifier: GPL-3.0-or-later
Copyright © 2026 Mike Robeson [dijksterhuis]
*/

//! Re-exports of all custom error types in the library. You shouldn't need these unless you're
//! operating with lower level functions / methods / types (the [`crate::OtToolsIoError`]
//! type implements `From` for all these types).

pub use crate::arrangements::ArrangementError;
pub use crate::markers::SlotMarkersError;
pub use crate::projects::{ProjectError, ProjectParseError, ProjectSlotsError};
pub use crate::samples::SampleSettingsError;
pub use crate::settings::InvalidValueError;
pub use crate::slices::SliceError;