#[repr(C)]pub struct _TidyOutputSink {
pub sinkData: *mut c_void,
pub putByte: TidyPutByteFunc,
}
Expand description
This type defines an output destination capable of accepting raw bytes of output
Fields§
§sinkData: *mut c_void
< Output context. Passed to callbacks.
putByte: TidyPutByteFunc
< Pointer to “put byte” callback
Trait Implementations§
Source§impl Clone for _TidyOutputSink
impl Clone for _TidyOutputSink
Source§fn clone(&self) -> _TidyOutputSink
fn clone(&self) -> _TidyOutputSink
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for _TidyOutputSink
impl Debug for _TidyOutputSink
impl Copy for _TidyOutputSink
Auto Trait Implementations§
impl Freeze for _TidyOutputSink
impl RefUnwindSafe for _TidyOutputSink
impl !Send for _TidyOutputSink
impl !Sync for _TidyOutputSink
impl Unpin for _TidyOutputSink
impl UnwindSafe for _TidyOutputSink
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