Files
termix/lib/src/region.rs
2025-11-23 18:59:30 +01:00

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