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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
// This file was generated by gir (https://github.com/gtk-rs/gir)
// from gir-files (https://github.com/gtk-rs/gir-files)
// DO NOT EDIT

use crate::{IOStream, InputStream, OutputStream};
use glib::{prelude::*, translate::*};
use std::fmt;

glib::wrapper! {
    /// GSimpleIOStream creates a [`IOStream`][crate::IOStream] from an arbitrary [`InputStream`][crate::InputStream] and
    /// [`OutputStream`][crate::OutputStream]. This allows any pair of input and output streams to be used
    /// with [`IOStream`][crate::IOStream] methods.
    ///
    /// This is useful when you obtained a [`InputStream`][crate::InputStream] and a [`OutputStream`][crate::OutputStream]
    /// by other means, for instance creating them with platform specific methods as
    /// [`UnixInputStream::new()`][crate::UnixInputStream::new()] or `g_win32_input_stream_new()`, and you want
    /// to take advantage of the methods provided by [`IOStream`][crate::IOStream].
    ///
    /// ## Properties
    ///
    ///
    /// #### `input-stream`
    ///  Readable | Writeable | Construct Only
    ///
    ///
    /// #### `output-stream`
    ///  Readable | Writeable | Construct Only
    /// <details><summary><h4>IOStream</h4></summary>
    ///
    ///
    /// #### `closed`
    ///  Readable
    ///
    ///
    /// #### `input-stream`
    ///  Readable
    ///
    ///
    /// #### `output-stream`
    ///  Readable
    /// </details>
    ///
    /// # Implements
    ///
    /// [`IOStreamExt`][trait@crate::prelude::IOStreamExt], [`trait@glib::ObjectExt`], [`IOStreamExtManual`][trait@crate::prelude::IOStreamExtManual]
    #[doc(alias = "GSimpleIOStream")]
    pub struct SimpleIOStream(Object<ffi::GSimpleIOStream>) @extends IOStream;

    match fn {
        type_ => || ffi::g_simple_io_stream_get_type(),
    }
}

impl SimpleIOStream {
    /// Creates a new [`SimpleIOStream`][crate::SimpleIOStream] wrapping `input_stream` and `output_stream`.
    /// See also [`IOStream`][crate::IOStream].
    /// ## `input_stream`
    /// a [`InputStream`][crate::InputStream].
    /// ## `output_stream`
    /// a [`OutputStream`][crate::OutputStream].
    ///
    /// # Returns
    ///
    /// a new [`SimpleIOStream`][crate::SimpleIOStream] instance.
    #[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")
    }
}