Struct decthings_api::rpc::debug::CallTrainParams
source · pub struct CallTrainParams<'a> {
pub debug_session_id: &'a str,
pub instantiated_model_id: &'a str,
pub params: Vec<DecthingsParameterProvider<'a>>,
}
Fields§
§debug_session_id: &'a str
The debug session’s id.
instantiated_model_id: &'a str
Identifier of the instantiated model to use, as returned by the ‘callInstantiateModel’ function.
params: Vec<DecthingsParameterProvider<'a>>
Parameters to provide to the function.
Trait Implementations§
source§impl<'a> Clone for CallTrainParams<'a>
impl<'a> Clone for CallTrainParams<'a>
source§fn clone(&self) -> CallTrainParams<'a>
fn clone(&self) -> CallTrainParams<'a>
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> Debug for CallTrainParams<'a>
impl<'a> Debug for CallTrainParams<'a>
Auto Trait Implementations§
impl<'a> Freeze for CallTrainParams<'a>
impl<'a> RefUnwindSafe for CallTrainParams<'a>
impl<'a> Send for CallTrainParams<'a>
impl<'a> Sync for CallTrainParams<'a>
impl<'a> Unpin for CallTrainParams<'a>
impl<'a> UnwindSafe for CallTrainParams<'a>
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