[−][src]Struct spectrusty_core::chip::ScldCtrlFlags
Timex TC2048/TC2068/TS2068 screen and memory control flags.
Implementations
impl ScldCtrlFlags[src]
pub const SCREEN_MODE_MASK: ScldCtrlFlags[src]
pub const SCREEN_SOURCE_MASK: ScldCtrlFlags[src]
pub const SCREEN_SECONDARY: ScldCtrlFlags[src]
pub const SCREEN_HI_ATTRS: ScldCtrlFlags[src]
pub const SCREEN_HI_RES: ScldCtrlFlags[src]
pub const HIRES_COLOR_MASK: ScldCtrlFlags[src]
pub const INTR_DISABLED: ScldCtrlFlags[src]
pub const MAP_EX_ROM: ScldCtrlFlags[src]
pub const fn empty() -> ScldCtrlFlags[src]
Returns an empty set of flags
pub const fn all() -> ScldCtrlFlags[src]
Returns the set containing all flags.
pub const fn bits(&self) -> u8[src]
Returns the raw value of the flags currently stored.
pub fn from_bits(bits: u8) -> Option<ScldCtrlFlags>[src]
Convert from underlying bit representation, unless that representation contains bits that do not correspond to a flag.
pub const fn from_bits_truncate(bits: u8) -> ScldCtrlFlags[src]
Convert from underlying bit representation, dropping any bits that do not correspond to flags.
pub const unsafe fn from_bits_unchecked(bits: u8) -> ScldCtrlFlags[src]
Convert from underlying bit representation, preserving all bits (even those not corresponding to a defined flag).
pub const fn is_empty(&self) -> bool[src]
Returns true if no flags are currently stored.
pub const fn is_all(&self) -> bool[src]
Returns true if all flags are currently set.
pub const fn intersects(&self, other: ScldCtrlFlags) -> bool[src]
Returns true if there are flags common to both self and other.
pub const fn contains(&self, other: ScldCtrlFlags) -> bool[src]
Returns true all of the flags in other are contained within self.
pub fn insert(&mut self, other: ScldCtrlFlags)[src]
Inserts the specified flags in-place.
pub fn remove(&mut self, other: ScldCtrlFlags)[src]
Removes the specified flags in-place.
pub fn toggle(&mut self, other: ScldCtrlFlags)[src]
Toggles the specified flags in-place.
pub fn set(&mut self, other: ScldCtrlFlags, value: bool)[src]
Inserts or removes the specified flags depending on the passed value.
impl ScldCtrlFlags[src]
pub fn into_plus_mode(self) -> UlaPlusRegFlags[src]
Returns scren mode with hi-res colors from flags as ULAplus register flags in mode group.
pub fn hires_color_index(self) -> u8[src]
Returns a color index from high resolution color mask: [0, 7].
pub fn is_map_ex_rom(self) -> bool[src]
Returns true if a map ex rom bit is 1. Otherwise returns false.
pub fn is_intr_disabled(self) -> bool[src]
Returns true if a interrupt disabled bit is 1. Otherwise returns false.
pub fn is_screen_hi_res(self) -> bool[src]
Returns true if a screen high resolution bit is 1. Otherwise returns false.
pub fn is_screen_hi_attrs(self) -> bool[src]
Returns true if a screen high color bit is 1. Otherwise returns false.
pub fn is_screen_secondary(self) -> bool[src]
Returns true if a screen secondary bit is 1. Otherwise returns false.
Trait Implementations
impl Binary for ScldCtrlFlags[src]
impl BitAnd<ScldCtrlFlags> for ScldCtrlFlags[src]
type Output = ScldCtrlFlags
The resulting type after applying the & operator.
pub fn bitand(self, other: ScldCtrlFlags) -> ScldCtrlFlags[src]
Returns the intersection between the two sets of flags.
impl BitAndAssign<ScldCtrlFlags> for ScldCtrlFlags[src]
pub fn bitand_assign(&mut self, other: ScldCtrlFlags)[src]
Disables all flags disabled in the set.
impl BitOr<ScldCtrlFlags> for ScldCtrlFlags[src]
type Output = ScldCtrlFlags
The resulting type after applying the | operator.
pub fn bitor(self, other: ScldCtrlFlags) -> ScldCtrlFlags[src]
Returns the union of the two sets of flags.
impl BitOrAssign<ScldCtrlFlags> for ScldCtrlFlags[src]
pub fn bitor_assign(&mut self, other: ScldCtrlFlags)[src]
Adds the set of flags.
impl BitXor<ScldCtrlFlags> for ScldCtrlFlags[src]
type Output = ScldCtrlFlags
The resulting type after applying the ^ operator.
pub fn bitxor(self, other: ScldCtrlFlags) -> ScldCtrlFlags[src]
Returns the left flags, but with all the right flags toggled.
impl BitXorAssign<ScldCtrlFlags> for ScldCtrlFlags[src]
pub fn bitxor_assign(&mut self, other: ScldCtrlFlags)[src]
Toggles the set of flags.
impl Clone for ScldCtrlFlags[src]
pub fn clone(&self) -> ScldCtrlFlags[src]
pub fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Copy for ScldCtrlFlags[src]
impl Debug for ScldCtrlFlags[src]
impl Default for ScldCtrlFlags[src]
pub fn default() -> ScldCtrlFlags[src]
impl<'de> Deserialize<'de> for ScldCtrlFlags[src]
pub fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>, [src]
__D: Deserializer<'de>,
impl Eq for ScldCtrlFlags[src]
impl Extend<ScldCtrlFlags> for ScldCtrlFlags[src]
pub fn extend<T: IntoIterator<Item = ScldCtrlFlags>>(&mut self, iterator: T)[src]
pub fn extend_one(&mut self, item: A)[src]
pub fn extend_reserve(&mut self, additional: usize)[src]
impl From<u8> for ScldCtrlFlags[src]
pub fn from(flags: u8) -> ScldCtrlFlags[src]
impl FromIterator<ScldCtrlFlags> for ScldCtrlFlags[src]
pub fn from_iter<T: IntoIterator<Item = ScldCtrlFlags>>(
iterator: T
) -> ScldCtrlFlags[src]
iterator: T
) -> ScldCtrlFlags
impl Hash for ScldCtrlFlags[src]
pub fn hash<__H: Hasher>(&self, state: &mut __H)[src]
pub fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher, 1.3.0[src]
H: Hasher,
impl LowerHex for ScldCtrlFlags[src]
impl Not for ScldCtrlFlags[src]
type Output = ScldCtrlFlags
The resulting type after applying the ! operator.
pub fn not(self) -> ScldCtrlFlags[src]
Returns the complement of this set of flags.
impl Octal for ScldCtrlFlags[src]
impl Ord for ScldCtrlFlags[src]
pub fn cmp(&self, other: &ScldCtrlFlags) -> Ordering[src]
#[must_use]pub fn max(self, other: Self) -> Self1.21.0[src]
#[must_use]pub fn min(self, other: Self) -> Self1.21.0[src]
#[must_use]pub fn clamp(self, min: Self, max: Self) -> Self1.50.0[src]
impl PartialEq<ScldCtrlFlags> for ScldCtrlFlags[src]
pub fn eq(&self, other: &ScldCtrlFlags) -> bool[src]
pub fn ne(&self, other: &ScldCtrlFlags) -> bool[src]
impl PartialOrd<ScldCtrlFlags> for ScldCtrlFlags[src]
pub fn partial_cmp(&self, other: &ScldCtrlFlags) -> Option<Ordering>[src]
pub fn lt(&self, other: &ScldCtrlFlags) -> bool[src]
pub fn le(&self, other: &ScldCtrlFlags) -> bool[src]
pub fn gt(&self, other: &ScldCtrlFlags) -> bool[src]
pub fn ge(&self, other: &ScldCtrlFlags) -> bool[src]
impl Serialize for ScldCtrlFlags[src]
pub fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error> where
__S: Serializer, [src]
__S: Serializer,
impl StructuralEq for ScldCtrlFlags[src]
impl StructuralPartialEq for ScldCtrlFlags[src]
impl Sub<ScldCtrlFlags> for ScldCtrlFlags[src]
type Output = ScldCtrlFlags
The resulting type after applying the - operator.
pub fn sub(self, other: ScldCtrlFlags) -> ScldCtrlFlags[src]
Returns the set difference of the two sets of flags.
impl SubAssign<ScldCtrlFlags> for ScldCtrlFlags[src]
pub fn sub_assign(&mut self, other: ScldCtrlFlags)[src]
Disables all flags enabled in the set.
impl UpperHex for ScldCtrlFlags[src]
Auto Trait Implementations
impl RefUnwindSafe for ScldCtrlFlags[src]
impl Send for ScldCtrlFlags[src]
impl Sync for ScldCtrlFlags[src]
impl Unpin for ScldCtrlFlags[src]
impl UnwindSafe for ScldCtrlFlags[src]
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>, [src]
T: for<'de> Deserialize<'de>,
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,