pub enum GraphicCharacterCombination {
CombineTwo = 0,
StartOfCombination = 1,
EndOfCombination = 2,
}
Expand description
Valid parameter values to the function GCC
.
Variants§
CombineTwo = 0
Combine the following two graphic characters into a single graphic symbol.
StartOfCombination = 1
Combine all following graphic characters, until the occurrence of
GraphicCharacterCombination::EndOfCombination
into a single graphic symbol.
EndOfCombination = 2
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 for GraphicCharacterCombination
impl PartialEq 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 ==
.impl Copy for GraphicCharacterCombination
impl Eq for GraphicCharacterCombination
impl StructuralEq for GraphicCharacterCombination
impl StructuralPartialEq for GraphicCharacterCombination
Auto Trait Implementations§
impl RefUnwindSafe for GraphicCharacterCombination
impl Send for GraphicCharacterCombination
impl Sync for GraphicCharacterCombination
impl Unpin for GraphicCharacterCombination
impl UnwindSafe for GraphicCharacterCombination
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