pub enum ExcelOperation {
Read {
s3_url: String,
},
Edit {
s3_url: String,
operations: Vec<String>,
upload_tool: String,
file_path: String,
},
AddRows {
s3_url: String,
rows: Vec<Vec<String>>,
upload_tool: String,
file_path: String,
},
}Expand description
Excel operation types
Variants§
Trait Implementations§
Source§impl Clone for ExcelOperation
impl Clone for ExcelOperation
Source§fn clone(&self) -> ExcelOperation
fn clone(&self) -> ExcelOperation
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 moreAuto Trait Implementations§
impl Freeze for ExcelOperation
impl RefUnwindSafe for ExcelOperation
impl Send for ExcelOperation
impl Sync for ExcelOperation
impl Unpin for ExcelOperation
impl UnsafeUnpin for ExcelOperation
impl UnwindSafe for ExcelOperation
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