Struct decthings_api::client::rpc::debug::CallInstantiateModelParams
source · pub struct CallInstantiateModelParams<'a, D: AsRef<[u8]>> {
pub debug_session_id: &'a str,
pub state_data: StateDataProvider<'a, D>,
}
Fields§
§debug_session_id: &'a str
The debug session’s id.
state_data: StateDataProvider<'a, D>
Data to use as model state.
Trait Implementations§
source§impl<'a, D: Clone + AsRef<[u8]>> Clone for CallInstantiateModelParams<'a, D>
impl<'a, D: Clone + AsRef<[u8]>> Clone for CallInstantiateModelParams<'a, D>
source§fn clone(&self) -> CallInstantiateModelParams<'a, D>
fn clone(&self) -> CallInstantiateModelParams<'a, D>
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 moreAuto Trait Implementations§
impl<'a, D> Freeze for CallInstantiateModelParams<'a, D>
impl<'a, D> RefUnwindSafe for CallInstantiateModelParams<'a, D>where
D: RefUnwindSafe,
impl<'a, D> Send for CallInstantiateModelParams<'a, D>where
D: Sync,
impl<'a, D> Sync for CallInstantiateModelParams<'a, D>where
D: Sync,
impl<'a, D> Unpin for CallInstantiateModelParams<'a, D>
impl<'a, D> UnwindSafe for CallInstantiateModelParams<'a, D>where
D: RefUnwindSafe,
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