* perf: utilize smartstring for string handling - Updated various modules to replace standard String with smartstring::alias::String for improved performance and memory efficiency. - Adjusted string manipulations and conversions throughout the codebase to ensure compatibility with the new smartstring type. - Enhanced readability and maintainability by using `.into()` for conversions where applicable. - Ensured that all instances of string handling in configuration, logging, and network management leverage the benefits of smartstring. * fix: replace wrap_err with stringify_err for better error handling in UWP tool invocation * refactor: update import path for StringifyErr and adjust string handling in sysopt * fix: correct import path for CmdResult in UWP module * fix: update argument type for execute_sysproxy_command to use std::string::String * fix: add missing CmdResult import in UWP platform module * fix: improve string handling and error messaging across multiple files * style: format code for improved readability and consistency across multiple files * fix: remove unused file
30 lines
626 B
Rust
30 lines
626 B
Rust
use crate::cmd::CmdResult;
|
|
|
|
/// Platform-specific implementation for UWP functionality
|
|
#[cfg(windows)]
|
|
mod platform {
|
|
use crate::cmd::CmdResult;
|
|
use crate::cmd::StringifyErr;
|
|
use crate::core::win_uwp;
|
|
|
|
pub fn invoke_uwp_tool() -> CmdResult {
|
|
win_uwp::invoke_uwptools().stringify_err()
|
|
}
|
|
}
|
|
|
|
/// Stub implementation for non-Windows platforms
|
|
#[cfg(not(windows))]
|
|
mod platform {
|
|
use super::CmdResult;
|
|
|
|
pub fn invoke_uwp_tool() -> CmdResult {
|
|
Ok(())
|
|
}
|
|
}
|
|
|
|
/// Command exposed to Tauri
|
|
#[tauri::command]
|
|
pub async fn invoke_uwp_tool() -> CmdResult {
|
|
platform::invoke_uwp_tool()
|
|
}
|