#[repr(C)]pub struct DXGI_SWAP_CHAIN_DESC {
pub BufferDesc: DXGI_MODE_DESC,
pub SampleDesc: DXGI_SAMPLE_DESC,
pub BufferUsage: DXGI_USAGE,
pub BufferCount: u32,
pub OutputWindow: HWND,
pub SwapEffect: DXGI_SWAP_EFFECT,
pub Flags: DXGI_SWAP_CHAIN_FLAG,
/* private fields */
}
Available on crate feature
dxgi
only.Expand description
DXGI_SWAP_CHAIN_DESC
struct.
Fields§
§BufferDesc: DXGI_MODE_DESC
§SampleDesc: DXGI_SAMPLE_DESC
§BufferUsage: DXGI_USAGE
§BufferCount: u32
§OutputWindow: HWND
§SwapEffect: DXGI_SWAP_EFFECT
§Flags: DXGI_SWAP_CHAIN_FLAG
Implementations§
Trait Implementations§
Source§impl Default for DXGI_SWAP_CHAIN_DESC
impl Default for DXGI_SWAP_CHAIN_DESC
Source§impl PartialEq for DXGI_SWAP_CHAIN_DESC
impl PartialEq for DXGI_SWAP_CHAIN_DESC
impl Eq for DXGI_SWAP_CHAIN_DESC
impl StructuralPartialEq for DXGI_SWAP_CHAIN_DESC
Auto Trait Implementations§
impl Freeze for DXGI_SWAP_CHAIN_DESC
impl RefUnwindSafe for DXGI_SWAP_CHAIN_DESC
impl Send for DXGI_SWAP_CHAIN_DESC
impl !Sync for DXGI_SWAP_CHAIN_DESC
impl Unpin for DXGI_SWAP_CHAIN_DESC
impl UnwindSafe for DXGI_SWAP_CHAIN_DESC
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