1 2 3 4 5 6 7 8 9 10
use crate::{define_obj_type, ns, objc}; #[objc::protocol(UIDropSession)] pub trait DropSession: objc::Obj {} define_obj_type!( pub AnyDropSession(ns::Id) ); impl DropSession for AnyDropSession {}