Trait sourceview5::prelude::DataInputStreamExt
source · pub trait DataInputStreamExt: IsA<DataInputStream> + Sealed + 'static {
Show 13 methods
// Provided methods
fn byte_order(&self) -> DataStreamByteOrder { ... }
fn newline_type(&self) -> DataStreamNewlineType { ... }
fn read_byte(
&self,
cancellable: Option<&impl IsA<Cancellable>>,
) -> Result<u8, Error> { ... }
fn read_int16(
&self,
cancellable: Option<&impl IsA<Cancellable>>,
) -> Result<i16, Error> { ... }
fn read_int32(
&self,
cancellable: Option<&impl IsA<Cancellable>>,
) -> Result<i32, Error> { ... }
fn read_int64(
&self,
cancellable: Option<&impl IsA<Cancellable>>,
) -> Result<i64, Error> { ... }
fn read_uint16(
&self,
cancellable: Option<&impl IsA<Cancellable>>,
) -> Result<u16, Error> { ... }
fn read_uint32(
&self,
cancellable: Option<&impl IsA<Cancellable>>,
) -> Result<u32, Error> { ... }
fn read_uint64(
&self,
cancellable: Option<&impl IsA<Cancellable>>,
) -> Result<u64, Error> { ... }
fn set_byte_order(&self, order: DataStreamByteOrder) { ... }
fn set_newline_type(&self, type_: DataStreamNewlineType) { ... }
fn connect_byte_order_notify<F>(&self, f: F) -> SignalHandlerId
where F: Fn(&Self) + 'static { ... }
fn connect_newline_type_notify<F>(&self, f: F) -> SignalHandlerId
where F: Fn(&Self) + 'static { ... }
}
Provided Methods§
fn byte_order(&self) -> DataStreamByteOrder
fn newline_type(&self) -> DataStreamNewlineType
fn read_byte( &self, cancellable: Option<&impl IsA<Cancellable>>, ) -> Result<u8, Error>
fn read_int16( &self, cancellable: Option<&impl IsA<Cancellable>>, ) -> Result<i16, Error>
fn read_int32( &self, cancellable: Option<&impl IsA<Cancellable>>, ) -> Result<i32, Error>
fn read_int64( &self, cancellable: Option<&impl IsA<Cancellable>>, ) -> Result<i64, Error>
fn read_uint16( &self, cancellable: Option<&impl IsA<Cancellable>>, ) -> Result<u16, Error>
fn read_uint32( &self, cancellable: Option<&impl IsA<Cancellable>>, ) -> Result<u32, Error>
fn read_uint64( &self, cancellable: Option<&impl IsA<Cancellable>>, ) -> Result<u64, Error>
fn set_byte_order(&self, order: DataStreamByteOrder)
fn set_newline_type(&self, type_: DataStreamNewlineType)
fn connect_byte_order_notify<F>(&self, f: F) -> SignalHandlerId
fn connect_newline_type_notify<F>(&self, f: F) -> SignalHandlerId
Object Safety§
This trait is not object safe.