pub enum AreaQualification {
UnprotectedUnguarded,
ProtectedGuarded,
GraphicCharacterInput,
NumericInput,
AlphabeticInput,
InputAlignedRight,
FillZeros,
SetCharacterTabulationStop,
ProtectedUnguarded,
FillSpaces,
InputAlignedLeft,
Reversed,
}
Expand description
Valid parameter values to the function DAQ
.
Variants§
UnprotectedUnguarded
Unprotected and unguarded.
ProtectedGuarded
Protected and guarded.
GraphicCharacterInput
Graphic character input.
NumericInput
Numeric input.
AlphabeticInput
Alphabetic input.
InputAlignedRight
Input aligned on the last character position of the qualified area.
FillZeros
Fill with ZEROs.
SetCharacterTabulationStop
Set a character tabulation stop at the active presentation position (the first character position of the qualified area) to indicate the beginning of a field.
ProtectedUnguarded
Protected and unguarded
FillSpaces
Fill with SPACEs
InputAlignedLeft
Input aligned on the first character position of the qualified area.
Reversed
The order of the character positions in the input field is reserved, i.e. the last position in each line becomes the first and vice versa; input begins at the new first position.
Trait Implementations§
source§impl Clone for AreaQualification
impl Clone for AreaQualification
source§fn clone(&self) -> AreaQualification
fn clone(&self) -> AreaQualification
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 Default for AreaQualification
impl Default for AreaQualification
source§fn default() -> AreaQualification
fn default() -> AreaQualification
Returns the “default value” for a type. Read more
source§impl PartialEq<AreaQualification> for AreaQualification
impl PartialEq<AreaQualification> for AreaQualification
source§fn eq(&self, other: &AreaQualification) -> bool
fn eq(&self, other: &AreaQualification) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.