#[repr(u32)]pub enum TidyFormatParameterType {
INT = 0,
UINT = 1,
STRING = 2,
DOUBLE = 3,
UNKNOWN = 20,
}
Expand description
Indicates the data type of a format string parameter used when Tidy
emits reports and dialogue as part of the messaging callback functions.
See messageobj.h
for more information on this API.
Variants§
INT = 0
< Argument is signed integer.
UINT = 1
< Argument is unsigned integer.
STRING = 2
< Argument is a string.
DOUBLE = 3
< Argument is a double.
UNKNOWN = 20
< Argument type is unknown!
Trait Implementations§
Source§impl Clone for TidyFormatParameterType
impl Clone for TidyFormatParameterType
Source§fn clone(&self) -> TidyFormatParameterType
fn clone(&self) -> TidyFormatParameterType
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 TidyFormatParameterType
impl Debug for TidyFormatParameterType
Source§impl Hash for TidyFormatParameterType
impl Hash for TidyFormatParameterType
Source§impl PartialEq for TidyFormatParameterType
impl PartialEq for TidyFormatParameterType
impl Copy for TidyFormatParameterType
impl Eq for TidyFormatParameterType
impl StructuralPartialEq for TidyFormatParameterType
Auto Trait Implementations§
impl Freeze for TidyFormatParameterType
impl RefUnwindSafe for TidyFormatParameterType
impl Send for TidyFormatParameterType
impl Sync for TidyFormatParameterType
impl Unpin for TidyFormatParameterType
impl UnwindSafe for TidyFormatParameterType
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