objc2-shared-with-you 0.3.2

Bindings to the SharedWithYou framework
Documentation
//! This file has been automatically generated by `objc2`'s `header-translator`.
//! DO NOT EDIT
use core::ptr::NonNull;
use objc2::__framework_prelude::*;
use objc2_foundation::*;

use crate::*;

extern_protocol!(
    /// A protocol defining an activity that can be posted in response to a user action on some content.
    ///
    /// See also [Apple's documentation](https://developer.apple.com/documentation/sharedwithyou/swhighlightevent?language=objc)
    pub unsafe trait SWHighlightEvent:
        NSObjectProtocol + NSSecureCoding + NSCopying
    {
        #[unsafe(method(highlightURL))]
        #[unsafe(method_family = none)]
        unsafe fn highlightURL(&self) -> Retained<NSURL>;
    }
);