pub struct AdvancedConfig {
pub enable_neural_rl: bool,
pub enable_gpu_acceleration: bool,
pub enable_neuromorphic: bool,
pub enable_realtime_adaptation: bool,
pub enable_memory_optimization: bool,
pub learning_rate: f64,
pub memory_threshold_mb: usize,
pub gpu_memory_pool_mb: usize,
pub neural_hidden_size: usize,
}Expand description
Advanced mode configuration for graph processing
Fields§
§enable_neural_rl: boolEnable neural RL-based algorithm selection
enable_gpu_acceleration: boolEnable GPU advanced-acceleration
enable_neuromorphic: boolEnable neuromorphic computing features
enable_realtime_adaptation: boolEnable real-time performance adaptation
enable_memory_optimization: boolEnable advanced memory optimization
learning_rate: f64Learning rate for adaptive algorithms
memory_threshold_mb: usizeMemory optimization threshold (MB)
gpu_memory_pool_mb: usizeGPU memory pool size (MB)
Neural network hidden layer size
Trait Implementations§
Source§impl Clone for AdvancedConfig
impl Clone for AdvancedConfig
Source§fn clone(&self) -> AdvancedConfig
fn clone(&self) -> AdvancedConfig
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 AdvancedConfig
impl Debug for AdvancedConfig
Auto Trait Implementations§
impl Freeze for AdvancedConfig
impl RefUnwindSafe for AdvancedConfig
impl Send for AdvancedConfig
impl Sync for AdvancedConfig
impl Unpin for AdvancedConfig
impl UnwindSafe for AdvancedConfig
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> 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