diff --git a/src/virt.rs b/src/virt.rs index 94f6cc4..6eb2f7a 100644 --- a/src/virt.rs +++ b/src/virt.rs @@ -246,6 +246,7 @@ where with_client(Ram::default(), client_id, f) } +#[cfg(feature = "manage")] pub fn with_ram_client_and_preserve( client_id: &str, should_preserve_file: fn(&Path, location: Location) -> bool, @@ -257,6 +258,7 @@ where with_client_and_preserve(Ram::default(), client_id, f, should_preserve_file) } +#[cfg(feature = "manage")] pub fn with_ram_clients_and_preserve( client_ids: [&str; N], should_preserve_file: fn(&Path, location: Location) -> bool,