#[non_exhaustive]pub struct NodeKernelModuleLoading {
pub policy: Policy,
/* private fields */
}Expand description
Configuration for kernel module loading on nodes.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.policy: PolicySet the node module loading policy for nodes in the node pool.
Implementations§
Trait Implementations§
Source§impl Clone for NodeKernelModuleLoading
impl Clone for NodeKernelModuleLoading
Source§fn clone(&self) -> NodeKernelModuleLoading
fn clone(&self) -> NodeKernelModuleLoading
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 NodeKernelModuleLoading
impl Debug for NodeKernelModuleLoading
Source§impl Default for NodeKernelModuleLoading
impl Default for NodeKernelModuleLoading
Source§fn default() -> NodeKernelModuleLoading
fn default() -> NodeKernelModuleLoading
Returns the “default value” for a type. Read more
Source§impl Message for NodeKernelModuleLoading
impl Message for NodeKernelModuleLoading
Source§impl PartialEq for NodeKernelModuleLoading
impl PartialEq for NodeKernelModuleLoading
impl StructuralPartialEq for NodeKernelModuleLoading
Auto Trait Implementations§
impl Freeze for NodeKernelModuleLoading
impl RefUnwindSafe for NodeKernelModuleLoading
impl Send for NodeKernelModuleLoading
impl Sync for NodeKernelModuleLoading
impl Unpin for NodeKernelModuleLoading
impl UnwindSafe for NodeKernelModuleLoading
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