pub enum OcBaseState {
On,
Off,
Unchanged,
}Expand description
/BaseState value of a configuration dictionary (Table 101).
Variants§
On
All groups initially ON. Table 101 default.
Off
All groups initially OFF.
Unchanged
Groups keep their prior state (only valid in non-default configurations per Table 101’s “If BaseState is present in the document’s default configuration dictionary, its value shall be ON” footnote).
Trait Implementations§
Source§impl Clone for OcBaseState
impl Clone for OcBaseState
Source§fn clone(&self) -> OcBaseState
fn clone(&self) -> OcBaseState
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 moreimpl Copy for OcBaseState
Source§impl Debug for OcBaseState
impl Debug for OcBaseState
Source§impl Default for OcBaseState
impl Default for OcBaseState
Source§fn default() -> OcBaseState
fn default() -> OcBaseState
Returns the “default value” for a type. Read more
impl Eq for OcBaseState
Source§impl PartialEq for OcBaseState
impl PartialEq for OcBaseState
Source§fn eq(&self, other: &OcBaseState) -> bool
fn eq(&self, other: &OcBaseState) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for OcBaseState
Auto Trait Implementations§
impl Freeze for OcBaseState
impl RefUnwindSafe for OcBaseState
impl Send for OcBaseState
impl Sync for OcBaseState
impl Unpin for OcBaseState
impl UnsafeUnpin for OcBaseState
impl UnwindSafe for OcBaseState
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