pub trait ToUniquePtr {
    type CppType;
    fn to_unique_ptr(self) -> UniquePtr<Self::CppType>
    where
        Self::CppType: UniquePtrTarget
; }

Associated Types

Required methods

Implementations on Foreign Types

Retrieve the UniquePtr to the Qt QString of this Rust String so that this object can be passed back to C++.

Implementors