pub enum SkOutput {
Integer,
Float,
}Expand description
Output type of a SwissKnife expression node.
Variants§
Integer
Integer output. The runtime rounds the computed value to the nearest integer with ties going towards zero.
Float
Floating point output. The runtime exposes the value as a f64 without
any additional processing.
Trait Implementations§
impl Copy for SkOutput
impl Eq for SkOutput
impl StructuralPartialEq for SkOutput
Auto Trait Implementations§
impl Freeze for SkOutput
impl RefUnwindSafe for SkOutput
impl Send for SkOutput
impl Sync for SkOutput
impl Unpin for SkOutput
impl UnwindSafe for SkOutput
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