pub enum PgsDisplaySetState {
Incomplete,
Complete,
EmptyFrame,
}
Expand description
Enum representing the state of the PgsDisplaySet
.
Variants§
Incomplete
The display set is incomplete, not all required segments (PCS, WDS, PDS, ODS) are present.
Complete
The display set is complete and ready to be rendered.
EmptyFrame
The display set contains only empty frames, meaning it has PCS and WDS but no PDS or ODS.
Trait Implementations§
Source§impl Clone for PgsDisplaySetState
impl Clone for PgsDisplaySetState
Source§fn clone(&self) -> PgsDisplaySetState
fn clone(&self) -> PgsDisplaySetState
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 PgsDisplaySetState
impl Debug for PgsDisplaySetState
Source§impl PartialEq for PgsDisplaySetState
impl PartialEq for PgsDisplaySetState
impl Copy for PgsDisplaySetState
impl StructuralPartialEq for PgsDisplaySetState
Auto Trait Implementations§
impl Freeze for PgsDisplaySetState
impl RefUnwindSafe for PgsDisplaySetState
impl Send for PgsDisplaySetState
impl Sync for PgsDisplaySetState
impl Unpin for PgsDisplaySetState
impl UnwindSafe for PgsDisplaySetState
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