This trait is implemented upon slint generated windows to enable IPC handling
| 44 | /// Components of this module are not be used by end user directly. This module contains |
| 45 | /// certain reexports used by public facing macros like [cast_spell] and [generate_widgets] |
| 46 | /// internally. |
| 47 | pub mod macro_internal { |
| 48 | pub use crate::vault::set_notification; |
| 49 | pub use paste::paste; |
| 50 | pub use smithay_client_toolkit::reexports::calloop::{ |
| 51 | Interest, Mode, PostAction, generic::Generic, |
| 52 | }; |
| 53 | pub use tracing::{info, span::Span, warn}; |
| 54 | } |
| 55 | use smithay_client_toolkit::{ |
| 56 | reexports::client::{QueueHandle, protocol::wl_surface::WlSurface}, |
| 57 | shell::xdg::popup::Popup, |
| 58 | }; |
| 59 | use std::error::Error; |
| 60 | use tracing::{Level, span, trace}; |
nothing calls this directly
no outgoing calls
no test coverage detected