12 lines
305 B
Rust
12 lines
305 B
Rust
use crate::metadata::Metadata;
|
|
|
|
pub struct Region {
|
|
pub metadata: Metadata,
|
|
// Position of the track on the track
|
|
pub starts_at: u64,
|
|
// From which point of the audio source the region starts
|
|
pub plays_from: u64,
|
|
// Duration of the region after plays_from
|
|
pub duration: u64,
|
|
}
|