Struct display_info::DisplayInfo
source · pub struct DisplayInfo {
pub name: String,
pub id: u32,
pub raw_handle: Output,
pub x: i32,
pub y: i32,
pub width: u32,
pub height: u32,
pub rotation: f32,
pub scale_factor: f32,
pub frequency: f32,
pub is_primary: bool,
}Fields§
§name: StringThe Display Name
id: u32Unique identifier associated with the display.
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.
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() -> Result<Vec<DisplayInfo>>
pub fn all() -> Result<Vec<DisplayInfo>>
sourcepub fn from_point(x: i32, y: i32) -> Result<DisplayInfo>
pub fn from_point(x: i32, y: i32) -> Result<DisplayInfo>
pub fn from_name(name: impl ToString) -> Result<DisplayInfo>
Trait Implementations§
source§impl Clone for DisplayInfo
impl Clone for DisplayInfo
source§fn clone(&self) -> DisplayInfo
fn clone(&self) -> DisplayInfo
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 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 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> 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.