pub enum GraphicCharacterCombination {
CombineTwo,
StartOfCombination,
EndOfCombination,
}
Expand description
Valid parameter values to the function GCC
.
Variants§
CombineTwo
Combine the following two graphic characters into a single graphic symbol.
StartOfCombination
Combine all following graphic characters, until the occurrence of
GraphicCharacterCombination::EndOfCombination
into a single graphic symbol.
EndOfCombination
Combine all preceding graphic characters, starting from GraphicCharacterCombination::StartOfCombination
,
into a single graphic symbol.
Trait Implementations§
source§impl Clone for GraphicCharacterCombination
impl Clone for GraphicCharacterCombination
source§fn clone(&self) -> GraphicCharacterCombination
fn clone(&self) -> GraphicCharacterCombination
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 GraphicCharacterCombination
impl Default for GraphicCharacterCombination
source§fn default() -> GraphicCharacterCombination
fn default() -> GraphicCharacterCombination
Returns the “default value” for a type. Read more
source§impl PartialEq<GraphicCharacterCombination> for GraphicCharacterCombination
impl PartialEq<GraphicCharacterCombination> for GraphicCharacterCombination
source§fn eq(&self, other: &GraphicCharacterCombination) -> bool
fn eq(&self, other: &GraphicCharacterCombination) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.