pub struct NeuralNetwork { /* private fields */ }
Expand description
Neural network
Implementations§
Source§impl NeuralNetwork
impl NeuralNetwork
Source§impl NeuralNetwork
impl NeuralNetwork
Trait Implementations§
Source§impl Clone for NeuralNetwork
impl Clone for NeuralNetwork
Source§fn clone(&self) -> NeuralNetwork
fn clone(&self) -> NeuralNetwork
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 moreSource§impl Debug for NeuralNetwork
impl Debug for NeuralNetwork
Source§impl<'de> Deserialize<'de> for NeuralNetwork
impl<'de> Deserialize<'de> for NeuralNetwork
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<NeuralNetwork> for JsValue
impl From<NeuralNetwork> for JsValue
Source§fn from(value: NeuralNetwork) -> Self
fn from(value: NeuralNetwork) -> Self
Converts to this type from the input type.
Source§impl FromWasmAbi for NeuralNetwork
impl FromWasmAbi for NeuralNetwork
Source§impl IntoWasmAbi for NeuralNetwork
impl IntoWasmAbi for NeuralNetwork
Source§impl LongRefFromWasmAbi for NeuralNetwork
impl LongRefFromWasmAbi for NeuralNetwork
Source§impl OptionFromWasmAbi for NeuralNetwork
impl OptionFromWasmAbi for NeuralNetwork
Source§impl OptionIntoWasmAbi for NeuralNetwork
impl OptionIntoWasmAbi for NeuralNetwork
Source§impl RefFromWasmAbi for NeuralNetwork
impl RefFromWasmAbi for NeuralNetwork
Source§type Anchor = RcRef<NeuralNetwork>
type Anchor = RcRef<NeuralNetwork>
The type that holds the reference to
Self
for the duration of the
invocation of the function that has an &Self
parameter. This is
required to ensure that the lifetimes don’t persist beyond one function
call, and so that they remain anonymous.Source§impl RefMutFromWasmAbi for NeuralNetwork
impl RefMutFromWasmAbi for NeuralNetwork
Source§impl Serialize for NeuralNetwork
impl Serialize for NeuralNetwork
Source§impl TryFromJsValue for NeuralNetwork
impl TryFromJsValue for NeuralNetwork
Source§impl VectorFromWasmAbi for NeuralNetwork
impl VectorFromWasmAbi for NeuralNetwork
type Abi = <Box<[JsValue]> as FromWasmAbi>::Abi
unsafe fn vector_from_abi(js: Self::Abi) -> Box<[NeuralNetwork]>
Source§impl VectorIntoJsValue for NeuralNetwork
impl VectorIntoJsValue for NeuralNetwork
fn vector_into_jsvalue(vector: Box<[NeuralNetwork]>) -> JsValue
Source§impl VectorIntoWasmAbi for NeuralNetwork
impl VectorIntoWasmAbi for NeuralNetwork
type Abi = <Box<[JsValue]> as IntoWasmAbi>::Abi
fn vector_into_abi(vector: Box<[NeuralNetwork]>) -> Self::Abi
Source§impl WasmDescribeVector for NeuralNetwork
impl WasmDescribeVector for NeuralNetwork
impl SupportsConstructor for NeuralNetwork
impl SupportsInstanceProperty for NeuralNetwork
impl SupportsStaticProperty for NeuralNetwork
Auto Trait Implementations§
impl Freeze for NeuralNetwork
impl RefUnwindSafe for NeuralNetwork
impl Send for NeuralNetwork
impl Sync for NeuralNetwork
impl Unpin for NeuralNetwork
impl UnwindSafe for NeuralNetwork
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> ReturnWasmAbi for Twhere
T: IntoWasmAbi,
impl<T> ReturnWasmAbi for Twhere
T: IntoWasmAbi,
Source§type Abi = <T as IntoWasmAbi>::Abi
type Abi = <T as IntoWasmAbi>::Abi
Same as
IntoWasmAbi::Abi
Source§fn return_abi(self) -> <T as ReturnWasmAbi>::Abi
fn return_abi(self) -> <T as ReturnWasmAbi>::Abi
Same as
IntoWasmAbi::into_abi
, except that it may throw and never
return in the case of Err
.