pub struct NeuralCall {
pub network: String,
pub input_indices: Vec<usize>,
}Expand description
A single neural predicate call.
Records which network to call and which input indices to use from the active tensor source.
Fields§
§network: StringName of the neural network (must match registered network)
input_indices: Vec<usize>Indices into the active tensor source
Implementations§
Trait Implementations§
Source§impl Clone for NeuralCall
impl Clone for NeuralCall
Source§fn clone(&self) -> NeuralCall
fn clone(&self) -> NeuralCall
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 NeuralCall
impl RefUnwindSafe for NeuralCall
impl Send for NeuralCall
impl Sync for NeuralCall
impl Unpin for NeuralCall
impl UnsafeUnpin for NeuralCall
impl UnwindSafe for NeuralCall
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