#[repr(C)]
pub struct StivaleEdidInfoTag { pub header: StivaleTagHeader, pub edid_len: u64, pub info_array: [u8], }
Expand description

This tag is used to get the EDID information as acquired by the firmware.

Fields

header: StivaleTagHeaderedid_len: u64

Length of the EDID information array.

info_array: [u8]

The variable length EDID information array.

Implementations

Return’s the EDID information pointer as a rust slice.

Safety

ptr must be a pointer to a properly initialized StivaleEdidInfoTag struct with edid_count entries in the info_array

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more