libfreemkv 0.26.1

Open source raw disc access library for optical drives
Documentation
1
2
3
4
5
6
7
8
9
10
//! Fallback preallocate impl. No-op.

use std::fs::File;

pub(super) fn preallocate_impl(_file: &File, size_bytes: u64) {
    tracing::debug!(
        target: "mux",
        "LocalFileSink preallocate size_hint={size_bytes} skipped (no platform impl)"
    );
}