1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
use glib::object::IsA;
use std::fmt;
glib::wrapper! {
pub struct CompletionProposal(Interface<ffi::GtkSourceCompletionProposal, ffi::GtkSourceCompletionProposalInterface>);
match fn {
get_type => || ffi::gtk_source_completion_proposal_get_type(),
}
}
pub const NONE_COMPLETION_PROPOSAL: Option<&CompletionProposal> = None;
pub trait CompletionProposalExt: 'static {}
impl<O: IsA<CompletionProposal>> CompletionProposalExt for O {}
impl fmt::Display for CompletionProposal {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
f.write_str("CompletionProposal")
}
}