pub type CONSOLE_SCREEN_BUFFER_INFOEX = _CONSOLE_SCREEN_BUFFER_INFOEX;
Aliased Type§
struct CONSOLE_SCREEN_BUFFER_INFOEX {
pub cbSize: u32,
pub dwSize: _COORD,
pub dwCursorPosition: _COORD,
pub wAttributes: u16,
pub srWindow: _SMALL_RECT,
pub dwMaximumWindowSize: _COORD,
pub wPopupAttributes: u16,
pub bFullscreenSupported: i32,
pub ColorTable: [u32; 16],
}
Fields§
§cbSize: u32
§dwSize: _COORD
§dwCursorPosition: _COORD
§wAttributes: u16
§srWindow: _SMALL_RECT
§dwMaximumWindowSize: _COORD
§wPopupAttributes: u16
§bFullscreenSupported: i32
§ColorTable: [u32; 16]
Trait Implementations
Source§impl Clone for _CONSOLE_SCREEN_BUFFER_INFOEX
impl Clone for _CONSOLE_SCREEN_BUFFER_INFOEX
Source§fn clone(&self) -> _CONSOLE_SCREEN_BUFFER_INFOEX
fn clone(&self) -> _CONSOLE_SCREEN_BUFFER_INFOEX
Returns a copy 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 Ord for _CONSOLE_SCREEN_BUFFER_INFOEX
impl Ord for _CONSOLE_SCREEN_BUFFER_INFOEX
Source§fn cmp(&self, other: &_CONSOLE_SCREEN_BUFFER_INFOEX) -> Ordering
fn cmp(&self, other: &_CONSOLE_SCREEN_BUFFER_INFOEX) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for _CONSOLE_SCREEN_BUFFER_INFOEX
impl PartialEq for _CONSOLE_SCREEN_BUFFER_INFOEX
Source§fn eq(&self, other: &_CONSOLE_SCREEN_BUFFER_INFOEX) -> bool
fn eq(&self, other: &_CONSOLE_SCREEN_BUFFER_INFOEX) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.