pub struct DeviceManifest {
pub rev: String,
pub refresh_rate: u32,
pub screen: ScreenProfile,
}Expand description
The display-manifest facts for a device: the content revision (so the device can skip an unchanged re-download), its poll interval, and its panel geometry.
Fields§
§rev: String§refresh_rate: u32§screen: ScreenProfileTrait Implementations§
Source§impl Clone for DeviceManifest
impl Clone for DeviceManifest
Source§fn clone(&self) -> DeviceManifest
fn clone(&self) -> DeviceManifest
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for DeviceManifest
impl RefUnwindSafe for DeviceManifest
impl Send for DeviceManifest
impl Sync for DeviceManifest
impl Unpin for DeviceManifest
impl UnsafeUnpin for DeviceManifest
impl UnwindSafe for DeviceManifest
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