Struct utf_converter::Main
source · pub(crate) struct Main {
pub(crate) input_stream: Box<dyn Read>,
pub(crate) output_stream: Box<dyn Write>,
}Fields§
§input_stream: Box<dyn Read>§output_stream: Box<dyn Write>Implementations§
source§impl Main
impl Main
pub(crate) fn new() -> Self
pub(crate) fn run(&mut self) -> Result<(), String>
pub(crate) fn process_utf8_input( &mut self, unicode_converter: &fn(_: u32, _: &mut [u8]) -> usize )
pub(crate) fn process_utf16_input_machine_endianness( &mut self, unicode_converter: &fn(_: u32, _: &mut [u8]) -> usize )
pub(crate) fn process_utf16_input_reversed_machine_endianness( &mut self, unicode_converter: &fn(_: u32, _: &mut [u8]) -> usize )
pub(crate) fn process_utf32_input_machine_endianness( &mut self, unicode_converter: &fn(_: u32, _: &mut [u8]) -> usize )
pub(crate) fn process_utf32_input_reversed_machine_endianness( &mut self, unicode_converter: &fn(_: u32, _: &mut [u8]) -> usize )
Auto Trait Implementations§
impl !RefUnwindSafe for Main
impl !Send for Main
impl !Sync for Main
impl Unpin for Main
impl !UnwindSafe for Main
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>where
F: FnOnce(&Self) -> bool,
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>where F: FnOnce(&Self) -> bool,
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more