#[repr(C)]pub struct CConversionResult { /* private fields */ }
Expand description
Represents the result of converting an infix expression to Reverse Polish Notation (RPN) in a C-compatible format.
§Fields
result_expression
: A fixed-size array of C-style characters (c_char
) representing the converted RPN expression.error_code
: An integer error code (c_int
) indicating the success or failure of the conversion.0
represents success.- Other values indicate specific errors.
Auto Trait Implementations§
impl Freeze for CConversionResult
impl RefUnwindSafe for CConversionResult
impl Send for CConversionResult
impl Sync for CConversionResult
impl Unpin for CConversionResult
impl UnwindSafe for CConversionResult
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