pub trait WorkspacePathResolver: Send + Sync {
// Required method
fn normalize(&self, input: &str) -> Result<WorkspacePath>;
}Expand description
Normalizes and validates host-supplied paths before they reach a backend.
pub trait WorkspacePathResolver: Send + Sync {
// Required method
fn normalize(&self, input: &str) -> Result<WorkspacePath>;
}Normalizes and validates host-supplied paths before they reach a backend.