#[repr(C)]pub struct CReversePolishExpression {
pub crpn_expression: *const *const c_char,
pub length: usize,
}
Expand description
Reverse Polish Notatio3n (RPN) as a C syle array
§Fields
crpn_expression
: A pointer (*const *const c_char
) to a read-only array of C-style strings. Each string represents an element of the RPN expression.length
: The number of elements in theexpression
array.
Fields§
§crpn_expression: *const *const c_char
§length: usize
Trait Implementations§
Auto Trait Implementations§
impl Freeze for CReversePolishExpression
impl RefUnwindSafe for CReversePolishExpression
impl !Send for CReversePolishExpression
impl !Sync for CReversePolishExpression
impl Unpin for CReversePolishExpression
impl UnwindSafe for CReversePolishExpression
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