pub trait DocumentInteraction:
Send
+ Sync
+ 'static {
// Required method
fn open_document(
&self,
request: OpenDocumentRequest,
) -> Result<(), PlatformError>;
}pub trait DocumentInteraction:
Send
+ Sync
+ 'static {
// Required method
fn open_document(
&self,
request: OpenDocumentRequest,
) -> Result<(), PlatformError>;
}