pub struct NeuromorphicGraphLayer {
pub spiking_network: SpikingGraphNetwork,
pub event_processor: EventDrivenGraphProcessor,
pub liquid_state_machine: LiquidStateMachine,
pub processing_mode: NeuromorphicMode,
}Expand description
Neuromorphic graph layer implementing bio-inspired computation
Fields§
§spiking_network: SpikingGraphNetworkSpiking network
event_processor: EventDrivenGraphProcessorEvent-driven processor
liquid_state_machine: LiquidStateMachineLiquid state machine
processing_mode: NeuromorphicModeCurrent processing mode
Implementations§
Trait Implementations§
Source§impl Debug for NeuromorphicGraphLayer
impl Debug for NeuromorphicGraphLayer
Source§impl GraphLayer for NeuromorphicGraphLayer
impl GraphLayer for NeuromorphicGraphLayer
Auto Trait Implementations§
impl !Freeze for NeuromorphicGraphLayer
impl RefUnwindSafe for NeuromorphicGraphLayer
impl Send for NeuromorphicGraphLayer
impl Sync for NeuromorphicGraphLayer
impl Unpin for NeuromorphicGraphLayer
impl UnsafeUnpin for NeuromorphicGraphLayer
impl UnwindSafe for NeuromorphicGraphLayer
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> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more