$sce trust url

To trust a URL in Rust, you can use the Url::parse function from the url crate. Here's an example:

use url::Url;

fn main() {
    let url_str = "https://example.com";
    let url = Url::parse(url_str).expect("Failed to parse URL");

    // Use the trusted URL here
    println!("Trusted URL: {}", url);
}

Make sure to add the url crate to your Cargo.toml file:

[dependencies]
url = "2.2.2"

This will parse the URL and return a Url struct that you can use in your code.