mirror of
https://github.com/rust-windowing/winit.git
synced 2026-06-27 15:13:13 -04:00
Rename MonitorID -> MonitorId
This commit is contained in:
@@ -52,21 +52,21 @@ impl WindowProxy {
|
||||
}
|
||||
}
|
||||
|
||||
pub struct MonitorID;
|
||||
pub struct MonitorId;
|
||||
|
||||
#[inline]
|
||||
pub fn get_available_monitors() -> VecDeque<MonitorID> {
|
||||
pub fn get_available_monitors() -> VecDeque<MonitorId> {
|
||||
let mut list = VecDeque::new();
|
||||
list.push_back(MonitorID);
|
||||
list.push_back(MonitorId);
|
||||
list
|
||||
}
|
||||
|
||||
#[inline]
|
||||
pub fn get_primary_monitor() -> MonitorID {
|
||||
MonitorID
|
||||
pub fn get_primary_monitor() -> MonitorId {
|
||||
MonitorId
|
||||
}
|
||||
|
||||
impl MonitorID {
|
||||
impl MonitorId {
|
||||
#[inline]
|
||||
pub fn get_name(&self) -> Option<String> {
|
||||
Some("Canvas".to_owned())
|
||||
|
||||
Reference in New Issue
Block a user