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 duplicate 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 GraphicCharacterCombination
impl Debug for GraphicCharacterCombination
Source§impl Default for GraphicCharacterCombination
impl Default for GraphicCharacterCombination
Source§fn default() -> GraphicCharacterCombination
fn default() -> GraphicCharacterCombination
Returns the “default value” for a type. Read more
impl Copy for GraphicCharacterCombination
impl Eq for GraphicCharacterCombination
impl StructuralPartialEq for GraphicCharacterCombination
Auto Trait Implementations§
impl Freeze for GraphicCharacterCombination
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