#[repr(C)]
pub struct VIDEOPARAMETERS {
Show 23 fields pub Guid: GUID, pub dwOffset: u32, pub dwCommand: u32, pub dwFlags: u32, pub dwMode: u32, pub dwTVStandard: u32, pub dwAvailableModes: u32, pub dwAvailableTVStandard: u32, pub dwFlickerFilter: u32, pub dwOverScanX: u32, pub dwOverScanY: u32, pub dwMaxUnscaledX: u32, pub dwMaxUnscaledY: u32, pub dwPositionX: u32, pub dwPositionY: u32, pub dwBrightness: u32, pub dwContrast: u32, pub dwCPType: u32, pub dwCPCommand: u32, pub dwCPStandard: u32, pub dwCPKey: u32, pub bCP_APSTriggerBits: u32, pub bOEMCopyProtection: [u8; 256],
}

Fields§

§Guid: GUID§dwOffset: u32§dwCommand: u32§dwFlags: u32§dwMode: u32§dwTVStandard: u32§dwAvailableModes: u32§dwAvailableTVStandard: u32§dwFlickerFilter: u32§dwOverScanX: u32§dwOverScanY: u32§dwMaxUnscaledX: u32§dwMaxUnscaledY: u32§dwPositionX: u32§dwPositionY: u32§dwBrightness: u32§dwContrast: u32§dwCPType: u32§dwCPCommand: u32§dwCPStandard: u32§dwCPKey: u32§bCP_APSTriggerBits: u32§bOEMCopyProtection: [u8; 256]

Trait Implementations§

§

impl Clone for VIDEOPARAMETERS

§

fn clone(&self) -> Self

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
§

impl Debug for VIDEOPARAMETERS

§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
§

impl Default for VIDEOPARAMETERS

§

fn default() -> Self

Returns the “default value” for a type. Read more
§

impl PartialEq for VIDEOPARAMETERS

§

fn eq(&self, other: &Self) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
§

impl Copy for VIDEOPARAMETERS

§

impl Eq for VIDEOPARAMETERS

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.