[][src]Struct avr_libc::__file

#[repr(C)]pub struct __file {
    pub buf: *mut i8,
    pub unget: u8,
    pub flags: u8,
    pub size: i16,
    pub len: i16,
    pub put: Option<unsafe extern "C" fn(arg1: i8, arg2: *mut __file) -> i16>,
    pub get: Option<unsafe extern "C" fn(arg1: *mut __file) -> i16>,
    pub udata: *mut c_void,
}

Fields

buf: *mut i8unget: u8flags: u8size: i16len: i16put: Option<unsafe extern "C" fn(arg1: i8, arg2: *mut __file) -> i16>get: Option<unsafe extern "C" fn(arg1: *mut __file) -> i16>udata: *mut c_void

Trait Implementations

impl Clone for __file[src]

impl Copy for __file[src]

impl Debug for __file[src]

Auto Trait Implementations

impl !Send for __file[src]

impl !Sync for __file[src]

impl Unpin for __file[src]

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.