pub struct DisplayInfo {}Fields§
§id: u32Unique identifier associated with the display.
name: StringThe display name
friendly_name: StringThe display friendly name
raw_handle: OutputNative screen raw handle
x: i32The display x coordinate.
y: i32The display x coordinate.
width: u32The display pixel width.
height: u32The display pixel height.
width_mm: i32The width of a display in millimeters. This value may be 0.
height_mm: i32The height of a display in millimeters. This value may be 0.
rotation: f32Can be 0, 90, 180, 270, represents screen rotation in clock-wise degrees.
scale_factor: f32Output device’s pixel scale factor.
frequency: f32The display refresh rate.
is_primary: boolWhether the screen is the main screen
Implementations§
Source§impl DisplayInfo
impl DisplayInfo
Sourcepub fn all() -> DIResult<Vec<DisplayInfo>>
pub fn all() -> DIResult<Vec<DisplayInfo>>
Sourcepub fn from_point(x: i32, y: i32) -> DIResult<DisplayInfo>
pub fn from_point(x: i32, y: i32) -> DIResult<DisplayInfo>
Source§impl DisplayInfo
impl DisplayInfo
pub fn from_name(name: impl ToString) -> DIResult<DisplayInfo>
Trait Implementations§
Source§impl Clone for DisplayInfo
impl Clone for DisplayInfo
Source§fn clone(&self) -> DisplayInfo
fn clone(&self) -> DisplayInfo
Returns a duplicate 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 Debug for DisplayInfo
impl Debug for DisplayInfo
Source§impl From<&OutputInfo> for DisplayInfo
impl From<&OutputInfo> for DisplayInfo
Source§fn from(info: &OutputInfo) -> Self
fn from(info: &OutputInfo) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for DisplayInfo
impl RefUnwindSafe for DisplayInfo
impl Send for DisplayInfo
impl Sync for DisplayInfo
impl Unpin for DisplayInfo
impl UnwindSafe for DisplayInfo
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
Source§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Convert
Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>. Box<dyn Any> can
then be further downcast into Box<ConcreteType> where ConcreteType implements Trait.Source§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Convert
Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be
further downcast into Rc<ConcreteType> where ConcreteType implements Trait.Source§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Convert
&Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &Any’s vtable from &Trait’s.Source§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert
&mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &mut Any’s vtable from &mut Trait’s.