use std::path::Path;
use crate::{Error, Support, UnsupportedReason};
pub(crate) fn detect(_path: &Path) -> Result<Support, Error> {
Ok(Support::Unsupported(UnsupportedReason::PlatformBuild))
}
pub(crate) fn is_already_compressed(_path: &Path) -> Result<bool, Error> {
Ok(false)
}
pub(crate) fn apply_inplace(_path: &Path, _snapshot: &[u8]) -> Result<(), Error> {
Ok(())
}
pub(crate) fn apply_bytes(
_path: &Path,
_content: &[u8],
_mode: Option<std::fs::Permissions>,
) -> Result<(), Error> {
Ok(())
}
pub(crate) fn compressed_on_disk(_path: &Path) -> Result<Option<bool>, Error> {
Ok(None)
}
pub(crate) fn clone_file(_src: &Path, _dest: &Path) -> Result<bool, Error> {
Ok(false)
}