Struct ddc_winapi::Monitor
[−]
[src]
pub struct Monitor { /* fields omitted */ }
A handle to an attached monitor that allows the use of DDC/CI operations.
Methods
impl Monitor
[src]
pub unsafe fn new(monitor: PHYSICAL_MONITOR) -> Self
[src]
Create a new monitor from the specified handle.
pub fn enumerate() -> Result<Vec<Self>>
[src]
Enumerate all connected physical monitors.
pub fn description(&self) -> String
[src]
Physical monitor description string.
pub fn handle(&self) -> HANDLE
[src]
Physical monitor winapi handle.
pub fn winapi_get_timing_report(&self) -> Result<MC_TIMING_REPORT>
[src]
Retrieves a monitor's horizontal and vertical synchronization frequencies.
pub fn winapi_set_vcp_feature(&self, code: BYTE, value: DWORD) -> Result<()>
[src]
Sets the value of a Virtual Control Panel (VCP) code for a monitor.
pub fn winapi_save_current_settings(&self) -> Result<()>
[src]
Saves the current monitor settings to the display's nonvolatile storage.
pub fn winapi_get_vcp_feature_and_vcp_feature_reply(
&self,
code: BYTE
) -> Result<(u32, DWORD, DWORD)>
[src]
&self,
code: BYTE
) -> Result<(u32, DWORD, DWORD)>
Retrieves the current value, maximum value, and code type of a Virtual Control Panel (VCP) code for a monitor.
Returns (vcp_type, current_value, max_value)
pub fn winapi_get_capabilities_string_length(&self) -> Result<DWORD>
[src]
Retrieves the length of the buffer to pass to
winapi_capabilities_request_and_capabilities_reply
.
pub fn winapi_capabilities_request_and_capabilities_reply(
&self,
string: &mut [u8]
) -> Result<()>
[src]
&self,
string: &mut [u8]
) -> Result<()>
Retrieves a string describing a monitor's capabilities.
This string is always ASCII and includes a terminating null character.
Trait Implementations
impl DdcHost for Monitor
[src]
type Error = Error
An error that can occur when communicating with a DDC device. Read more
fn sleep(&mut self)
[src]
Wait for any previous commands to complete. Read more
impl Ddc for Monitor
[src]
fn capabilities_string(&mut self) -> Result<Vec<u8>, Self::Error>
[src]
Retrieve the capability string from the device. Read more
fn get_vcp_feature(
&mut self,
code: FeatureCode
) -> Result<VcpValue, Self::Error>
[src]
&mut self,
code: FeatureCode
) -> Result<VcpValue, Self::Error>
Gets the current value of an MCCS VCP feature.
fn set_vcp_feature(
&mut self,
code: FeatureCode,
value: u16
) -> Result<(), Self::Error>
[src]
&mut self,
code: FeatureCode,
value: u16
) -> Result<(), Self::Error>
Sets a VCP feature to the specified value.
fn save_current_settings(&mut self) -> Result<(), Self::Error>
[src]
Instructs the device to save its current settings.
fn get_timing_report(&mut self) -> Result<TimingMessage, Self::Error>
[src]
Retrieves a timing report from the device.