Enum tfm::pl::CharDisplayFormat
source · pub enum CharDisplayFormat {
Default,
Ascii,
Octal,
}
Expand description
Specification for how to display characters when printing property list data.
Variants§
Default
Letters and numbers are output in PL ASCII format (e.g. C A
), and
other characters are output in octal (e.g. O 14
).
TODO: rename this variant to AlphanumericAscii or something like that.
Ascii
Visible ASCII characters except ( and ) are output in PL ASCII format (e.g. C A
), and
other characters are output in octal (e.g. O 14
).
Octal
All characters are output in octal (e.g. O 14
)
Trait Implementations§
source§impl Clone for CharDisplayFormat
impl Clone for CharDisplayFormat
source§fn clone(&self) -> CharDisplayFormat
fn clone(&self) -> CharDisplayFormat
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 CharDisplayFormat
impl Debug for CharDisplayFormat
source§impl Default for CharDisplayFormat
impl Default for CharDisplayFormat
source§fn default() -> CharDisplayFormat
fn default() -> CharDisplayFormat
Returns the “default value” for a type. Read more
impl Copy for CharDisplayFormat
Auto Trait Implementations§
impl RefUnwindSafe for CharDisplayFormat
impl Send for CharDisplayFormat
impl Sync for CharDisplayFormat
impl Unpin for CharDisplayFormat
impl UnwindSafe for CharDisplayFormat
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