pub unsafe trait NSTextContentStorageDelegate: NSTextContentManagerDelegate {
// Provided method
fn textContentStorage_textParagraphWithRange(
&self,
text_content_storage: &NSTextContentStorage,
range: NSRange,
) -> Option<Retained<NSTextParagraph>>
where Self: Sized + Message { ... }
}Available on crate feature
NSTextContentManager only.Expand description
Provided Methods§
fn textContentStorage_textParagraphWithRange( &self, text_content_storage: &NSTextContentStorage, range: NSRange, ) -> Option<Retained<NSTextParagraph>>
Available on crate feature
NSTextElement only.Trait Implementations§
Source§impl ProtocolType for dyn NSTextContentStorageDelegate
impl ProtocolType for dyn NSTextContentStorageDelegate
impl<T> ImplementedBy<T> for dyn NSTextContentStorageDelegate
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".