Enum pdf_writer::types::FieldState
source · pub enum FieldState {
Unchecked,
Checked,
Neutral,
}Expand description
Whether a check box or radio button is checked.
Variants§
Unchecked
The check box or radio button is unchecked.
Checked
The check box or radio button is checked.
Neutral
The check box or radio button is in a quantum superstate.
Trait Implementations§
source§impl Clone for FieldState
impl Clone for FieldState
source§fn clone(&self) -> FieldState
fn clone(&self) -> FieldState
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 FieldState
impl Debug for FieldState
source§impl Hash for FieldState
impl Hash for FieldState
source§impl PartialEq for FieldState
impl PartialEq for FieldState
source§fn eq(&self, other: &FieldState) -> bool
fn eq(&self, other: &FieldState) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl Copy for FieldState
impl Eq for FieldState
impl StructuralEq for FieldState
impl StructuralPartialEq for FieldState
Auto Trait Implementations§
impl RefUnwindSafe for FieldState
impl Send for FieldState
impl Sync for FieldState
impl Unpin for FieldState
impl UnwindSafe for FieldState
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