#[repr(C)]pub struct CONSOLE_SCREEN_BUFFER_INFOEX {
    pub cbSize: ULONG,
    pub dwSize: COORD,
    pub dwCursorPosition: COORD,
    pub wAttributes: WORD,
    pub srWindow: SMALL_RECT,
    pub dwMaximumWindowSize: COORD,
    pub wPopupAttributes: WORD,
    pub bFullscreenSupported: BOOL,
    pub ColorTable: [COLORREF; 16],
}Fields
cbSize: ULONGdwSize: COORDdwCursorPosition: COORDwAttributes: WORDsrWindow: SMALL_RECTdwMaximumWindowSize: COORDwPopupAttributes: WORDbFullscreenSupported: BOOLColorTable: [COLORREF; 16]Trait Implementations
sourceimpl Clone for CONSOLE_SCREEN_BUFFER_INFOEX
 
impl Clone for CONSOLE_SCREEN_BUFFER_INFOEX
sourcefn clone(&self) -> CONSOLE_SCREEN_BUFFER_INFOEX
 
fn clone(&self) -> CONSOLE_SCREEN_BUFFER_INFOEX
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
 
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
impl Copy for CONSOLE_SCREEN_BUFFER_INFOEX
Auto Trait Implementations
impl RefUnwindSafe for CONSOLE_SCREEN_BUFFER_INFOEX
impl Send for CONSOLE_SCREEN_BUFFER_INFOEX
impl Sync for CONSOLE_SCREEN_BUFFER_INFOEX
impl Unpin for CONSOLE_SCREEN_BUFFER_INFOEX
impl UnwindSafe for CONSOLE_SCREEN_BUFFER_INFOEX
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
    T: ?Sized, 
 
impl<T> BorrowMut<T> for T where
    T: ?Sized, 
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
 
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more