Struct qt_gui::opengl_debug_logger::connection::StartLogging
source · pub struct StartLogging<'a>(_);Expand description
Represents a built-in Qt slot QOpenGLDebugLogger::startLogging.
An object of this type can be created from OpenGLDebugLogger with object.slots().start_logging() and used for creating Qt connections using qt_core::connection API. After the connection is made, the object can (should) be dropped. The connection will remain active until sender or receiver are destroyed or until a manual disconnection is made.
An object of this type contains a reference to the original OpenGLDebugLogger object.
Trait Implementations§
source§impl<'a> Receiver for StartLogging<'a>
impl<'a> Receiver for StartLogging<'a>
§type Arguments = (LoggingMode,)
type Arguments = (LoggingMode,)
Tuple of argument types of this receiver.