sourceview5/subclass/
completion_proposal.rs

1// Take a look at the license at the top of the repository in the LICENSE file.
2
3// rustdoc-stripper-ignore-next
4//! Traits intended for implementing the [`CompletionProposal`](crate::CompletionProposal) interface.
5
6use crate::{prelude::*, CompletionProposal};
7use glib::subclass::prelude::*;
8
9pub trait CompletionProposalImpl: ObjectImpl + ObjectSubclass<Type: IsA<glib::Object>> {}
10
11unsafe impl<T: CompletionProposalImpl> IsImplementable<T> for CompletionProposal {}