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
32
33
34
35
36
37
38
39
40
41
42
use crate::IOStream;
use crate::InputStream;
use crate::OutputStream;
use glib::object::Cast;
use glib::object::IsA;
use glib::translate::*;
use std::fmt;
glib::wrapper! {
#[doc(alias = "GSimpleIOStream")]
pub struct SimpleIOStream(Object<ffi::GSimpleIOStream>) @extends IOStream;
match fn {
type_ => || ffi::g_simple_io_stream_get_type(),
}
}
impl SimpleIOStream {
#[doc(alias = "g_simple_io_stream_new")]
pub fn new(
input_stream: &impl IsA<InputStream>,
output_stream: &impl IsA<OutputStream>,
) -> SimpleIOStream {
unsafe {
IOStream::from_glib_full(ffi::g_simple_io_stream_new(
input_stream.as_ref().to_glib_none().0,
output_stream.as_ref().to_glib_none().0,
))
.unsafe_cast()
}
}
}
impl fmt::Display for SimpleIOStream {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
f.write_str("SimpleIOStream")
}
}