pub struct UploadFasttextToMinioProgram {
pub dialect: Dialect,
pub code: String,
pub entrypoint: String,
pub arg_functions: Vec<(Vec<String>, String)>,
pub kwarg_functions: LinkedHashMap<String, (Vec<String>, String)>,
}
Fields§
§dialect: Dialect
§code: String
§entrypoint: String
§arg_functions: Vec<(Vec<String>, String)>
§kwarg_functions: LinkedHashMap<String, (Vec<String>, String)>
Trait Implementations§
Source§impl Clone for UploadFasttextToMinioProgram
impl Clone for UploadFasttextToMinioProgram
Source§fn clone(&self) -> UploadFasttextToMinioProgram
fn clone(&self) -> UploadFasttextToMinioProgram
Returns a copy 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<'a> TProgram<'a, UploadFasttextToMinio> for UploadFasttextToMinioProgram
impl<'a> TProgram<'a, UploadFasttextToMinio> for UploadFasttextToMinioProgram
fn new( code: String, entrypoint: String, arg_functions: Vec<(Vec<String>, String)>, kwarg_functions: LinkedHashMap<String, (Vec<String>, String)>, dialect: Dialect, ) -> Self
fn get_arg_functions(&self) -> Vec<(Vec<String>, String)>
fn get_code(&self) -> String
fn get_dialect(&self) -> Dialect
fn get_entrypoint(&self) -> String
fn get_kwarg_functions(&self) -> LinkedHashMap<String, (Vec<String>, String)>
Auto Trait Implementations§
impl Freeze for UploadFasttextToMinioProgram
impl RefUnwindSafe for UploadFasttextToMinioProgram
impl Send for UploadFasttextToMinioProgram
impl Sync for UploadFasttextToMinioProgram
impl Unpin for UploadFasttextToMinioProgram
impl UnwindSafe for UploadFasttextToMinioProgram
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