pub struct ArithmeticExpression { /* private fields */ }Expand description
Arithmetic expression for calculations
Implementations§
Source§impl ArithmeticExpression
impl ArithmeticExpression
Sourcepub fn from_string(expr: &str) -> Result<Self, PdfError>
pub fn from_string(expr: &str) -> Result<Self, PdfError>
Create expression from string
Trait Implementations§
Source§impl Clone for ArithmeticExpression
impl Clone for ArithmeticExpression
Source§fn clone(&self) -> ArithmeticExpression
fn clone(&self) -> ArithmeticExpression
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for ArithmeticExpression
impl RefUnwindSafe for ArithmeticExpression
impl Send for ArithmeticExpression
impl Sync for ArithmeticExpression
impl Unpin for ArithmeticExpression
impl UnsafeUnpin for ArithmeticExpression
impl UnwindSafe for ArithmeticExpression
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