pub struct Info {
pub id: DisplayId,
pub modes: Vec<Mode>,
pub pixel_format: Vec<PixelFormat>,
pub manufacturer_name: String,
pub monitor_name: String,
pub monitor_serial: String,
pub horizontal_size_mm: u32,
pub vertical_size_mm: u32,
pub using_fallback_size: bool,
}
Expand description
Description for a display device attached to the system.
Display devices include external monitors and internal panels.
Fields§
§id: DisplayId
Uniquely identifies the display in a Controller connection.
See [fuchsia.hardware.display.types/DisplayId
].
modes: Vec<Mode>
Operational modes supported by the described display device.
The first entry is the device’s preferred mode.
pixel_format: Vec<PixelFormat>
Pixel formats that can be directly displayed on the attached display.
This field will be revised to better reflect the subtleties around modern display hardware, such as multiple layer types, and around pixel format modifiers, such as tiling and framebuffer compression formats. See https://fxbug.dev/42072347 and https://fxbug.dev/42076907.
The formats listed here reflect support from both the display engine hardware and the display device. This means some of the formats may be subject to conversion inside the display engine hardware.
The first entry in the list is the display’s preferred format. This format is likely to be supported for transferring data between the display engine and the display hardware, and not require any conversion inside the display engine.
Format conversion inside the display engine is likely to be significantly more power-efficient than a GPU render stage or software conversion. So, using any format in this list is better than using the GPU to convert to the preferred format.
manufacturer_name: String
Part of a display device identifier that persists across boot cycles.
If the manufacturer_name
, monitor_name
and monitor_serial
fields
are all non-empty, they make up an identifier that is likely to be
unique to the attached device, and is highly unlikely to change across
boot cycles. Software that needs to identify displays (for example, to
honor display-specific preferences) should use this triplet.
monitor_name: String
Part of a display device identifier that persists across boot cycles.
See manufacturer_name
for details.
monitor_serial: String
Part of a display device identifier that persists across boot cycles.
See manufacturer_name
for details.
horizontal_size_mm: u32
Physical horizontal size of the displayed image area, in millimeters.
If using_fallback_size
is true, the value is a best guess from the
driver. Otherwise, the value here is reported by the display device.
vertical_size_mm: u32
Physical vertical size of the displayed image area, in millimeters.
See horizontal_size_mm
for more details.
using_fallback_size: bool
True if the driver does not have the display’s physical sizing info.
Trait Implementations§
Source§impl<D: ResourceDialect> Decode<Info, D> for Info
impl<D: ResourceDialect> Decode<Info, D> for Info
Source§impl<D: ResourceDialect, T0: Encode<DisplayId, D>, T1: Encode<UnboundedVector<Mode>, D>, T2: Encode<UnboundedVector<PixelFormat>, D>, T3: Encode<BoundedString<128>, D>, T4: Encode<BoundedString<128>, D>, T5: Encode<BoundedString<128>, D>, T6: Encode<u32, D>, T7: Encode<u32, D>, T8: Encode<bool, D>> Encode<Info, D> for (T0, T1, T2, T3, T4, T5, T6, T7, T8)
impl<D: ResourceDialect, T0: Encode<DisplayId, D>, T1: Encode<UnboundedVector<Mode>, D>, T2: Encode<UnboundedVector<PixelFormat>, D>, T3: Encode<BoundedString<128>, D>, T4: Encode<BoundedString<128>, D>, T5: Encode<BoundedString<128>, D>, T6: Encode<u32, D>, T7: Encode<u32, D>, T8: Encode<bool, D>> Encode<Info, D> for (T0, T1, T2, T3, T4, T5, T6, T7, T8)
Source§impl TypeMarker for Info
impl TypeMarker for Info
Source§fn inline_align(_context: Context) -> usize
fn inline_align(_context: Context) -> usize
Source§fn inline_size(_context: Context) -> usize
fn inline_size(_context: Context) -> usize
inline_align
.§fn encode_is_copy() -> bool
fn encode_is_copy() -> bool
Self::Owned
matches the FIDL wire
format and encoding requires no validation. When true, we can optimize
encoding arrays and vectors of Self::Owned
to a single memcpy. Read more§fn decode_is_copy() -> bool
fn decode_is_copy() -> bool
Self::Owned
matches the FIDL wire
format and decoding requires no validation. When true, we can optimize
decoding arrays and vectors of Self::Owned
to a single memcpy.Source§impl ValueTypeMarker for Info
impl ValueTypeMarker for Info
impl Persistable for Info
impl StructuralPartialEq for Info
Auto Trait Implementations§
impl Freeze for Info
impl RefUnwindSafe for Info
impl Send for Info
impl Sync for Info
impl Unpin for Info
impl UnwindSafe for Info
Blanket Implementations§
§impl<T> Body for Twhere
T: Persistable,
impl<T> Body for Twhere
T: Persistable,
§type MarkerAtTopLevel = T
type MarkerAtTopLevel = T
§type MarkerInResultUnion = T
type MarkerInResultUnion = T
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit
)