pub struct Track {
pub id: i64,
pub backing_path: String,
pub format: Format,
pub bounds: TrackBounds,
pub backing_size: u64,
pub backing_mtime_ns: i64,
pub backing_ctime_ns: i64,
pub content_version: i64,
pub updated_at: i64,
pub fingerprint: Option<String>,
pub content_hash: Option<String>,
}Fields§
§id: i64§backing_path: String§format: Format§bounds: TrackBounds§backing_size: u64§backing_mtime_ns: i64§backing_ctime_ns: i64§content_version: i64§updated_at: i64§fingerprint: Option<String>§content_hash: Option<String>Trait Implementations§
impl Eq for Track
impl StructuralPartialEq for Track
Auto Trait Implementations§
impl Freeze for Track
impl RefUnwindSafe for Track
impl Send for Track
impl Sync for Track
impl Unpin for Track
impl UnsafeUnpin for Track
impl UnwindSafe for Track
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more