rust_macios/foundation/
ns_url.rs

1use crate::{
2    object,
3    objective_c_runtime::{macros::interface_impl, traits::PNSObject},
4};
5
6object! {
7    /// An object that represents the location of a resource, such as an item on a remote server or the path to a local file.
8    unsafe pub struct NSURL;
9}
10
11#[interface_impl(NSObject)]
12impl NSURL {}