pub enum ChunkOptionValue {
Simple(String),
Expression(String),
}Expand description
Classification of chunk option values for conversion to hashpipe format.
Variants§
Simple(String)
Simple literal value that can be safely converted to YAML syntax. Examples: TRUE, FALSE, 7, “string”
Expression(String)
Complex R expression that should stay in inline format. Examples: paste(…), my_var, nrow(data)
Trait Implementations§
Source§impl Clone for ChunkOptionValue
impl Clone for ChunkOptionValue
Source§fn clone(&self) -> ChunkOptionValue
fn clone(&self) -> ChunkOptionValue
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 ChunkOptionValue
impl Debug for ChunkOptionValue
Source§impl PartialEq for ChunkOptionValue
impl PartialEq for ChunkOptionValue
impl Eq for ChunkOptionValue
impl StructuralPartialEq for ChunkOptionValue
Auto Trait Implementations§
impl Freeze for ChunkOptionValue
impl RefUnwindSafe for ChunkOptionValue
impl Send for ChunkOptionValue
impl Sync for ChunkOptionValue
impl Unpin for ChunkOptionValue
impl UnsafeUnpin for ChunkOptionValue
impl UnwindSafe for ChunkOptionValue
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