#[non_exhaustive]pub struct NodePoolLoggingConfig {
pub variant_config: Option<LoggingVariantConfig>,
/* private fields */
}Expand description
NodePoolLoggingConfig specifies logging configuration for nodepools.
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.variant_config: Option<LoggingVariantConfig>Logging variant configuration.
Implementations§
Source§impl NodePoolLoggingConfig
impl NodePoolLoggingConfig
pub fn new() -> Self
Sourcepub fn set_variant_config<T>(self, v: T) -> Selfwhere
T: Into<LoggingVariantConfig>,
pub fn set_variant_config<T>(self, v: T) -> Selfwhere
T: Into<LoggingVariantConfig>,
Sets the value of variant_config.
Sourcepub fn set_or_clear_variant_config<T>(self, v: Option<T>) -> Selfwhere
T: Into<LoggingVariantConfig>,
pub fn set_or_clear_variant_config<T>(self, v: Option<T>) -> Selfwhere
T: Into<LoggingVariantConfig>,
Sets or clears the value of variant_config.
Trait Implementations§
Source§impl Clone for NodePoolLoggingConfig
impl Clone for NodePoolLoggingConfig
Source§fn clone(&self) -> NodePoolLoggingConfig
fn clone(&self) -> NodePoolLoggingConfig
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 NodePoolLoggingConfig
impl Debug for NodePoolLoggingConfig
Source§impl Default for NodePoolLoggingConfig
impl Default for NodePoolLoggingConfig
Source§fn default() -> NodePoolLoggingConfig
fn default() -> NodePoolLoggingConfig
Returns the “default value” for a type. Read more
Source§impl Message for NodePoolLoggingConfig
impl Message for NodePoolLoggingConfig
Source§impl PartialEq for NodePoolLoggingConfig
impl PartialEq for NodePoolLoggingConfig
impl StructuralPartialEq for NodePoolLoggingConfig
Auto Trait Implementations§
impl Freeze for NodePoolLoggingConfig
impl RefUnwindSafe for NodePoolLoggingConfig
impl Send for NodePoolLoggingConfig
impl Sync for NodePoolLoggingConfig
impl Unpin for NodePoolLoggingConfig
impl UnwindSafe for NodePoolLoggingConfig
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