#[repr(C)]pub struct _IO_marker {
pub _next: *mut _IO_marker,
pub _sbuf: *mut _IO_FILE,
pub _pos: c_int,
}Expand description
A streammarker remembers a position in a buffer.
Fields§
§_next: *mut _IO_marker§_sbuf: *mut _IO_FILE§_pos: c_intIf _pos >= 0 it points to _buf->Gbase()+_pos. FIXME comment / / if _pos < 0, it points to _buf->eBptr()+_pos. FIXME comment
Trait Implementations§
Auto Trait Implementations§
impl Freeze for _IO_marker
impl RefUnwindSafe for _IO_marker
impl !Send for _IO_marker
impl !Sync for _IO_marker
impl Unpin for _IO_marker
impl UnwindSafe for _IO_marker
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