gio/auto/simple_io_stream.rs
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 85 86 87 88 89
// 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::{ffi, IOStream, InputStream, OutputStream};
use glib::{prelude::*, translate::*};
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
/// [`g_unix_input_stream_new()`](../gio-unix/ctor.UnixInputStream.new.html)
/// (from `gio-unix-2.0.pc` / `GioUnix-2.0`), and you want to
/// take advantage of the methods provided by [`IOStream`][crate::IOStream].
///
/// ## Properties
///
///
/// #### `input-stream`
/// The [`InputStream`][crate::InputStream] to read from.
///
/// Readable | Writeable | Construct Only
///
///
/// #### `output-stream`
/// The [`OutputStream`][crate::OutputStream] to write to.
///
/// Readable | Writeable | Construct Only
/// <details><summary><h4>IOStream</h4></summary>
///
///
/// #### `closed`
/// Whether the stream is closed.
///
/// Readable
///
///
/// #### `input-stream`
/// The [`InputStream`][crate::InputStream] to read from.
///
/// Readable
///
///
/// #### `output-stream`
/// The [`OutputStream`][crate::OutputStream] to write to.
///
/// 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 #GSimpleIOStream wrapping @input_stream and @output_stream.
/// See also #GIOStream.
/// ## `input_stream`
/// a #GInputStream.
/// ## `output_stream`
/// a #GOutputStream.
///
/// # Returns
///
/// a new #GSimpleIOStream 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()
}
}
}