pub struct RayOperatorConfig {
pub enabled: Option<bool>,
pub ray_cluster_logging_config: Option<RayClusterLoggingConfig>,
pub ray_cluster_monitoring_config: Option<RayClusterMonitoringConfig>,
}Expand description
Configuration options for the Ray Operator add-on.
This type is not used in any activity, and only used as part of another schema.
Fields§
§enabled: Option<bool>Whether the Ray Operator addon is enabled for this cluster.
ray_cluster_logging_config: Option<RayClusterLoggingConfig>Optional. Logging configuration for Ray clusters.
ray_cluster_monitoring_config: Option<RayClusterMonitoringConfig>Optional. Monitoring configuration for Ray clusters.
Trait Implementations§
Source§impl Clone for RayOperatorConfig
impl Clone for RayOperatorConfig
Source§fn clone(&self) -> RayOperatorConfig
fn clone(&self) -> RayOperatorConfig
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 RayOperatorConfig
impl Debug for RayOperatorConfig
Source§impl Default for RayOperatorConfig
impl Default for RayOperatorConfig
Source§fn default() -> RayOperatorConfig
fn default() -> RayOperatorConfig
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RayOperatorConfig
impl<'de> Deserialize<'de> for RayOperatorConfig
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 Serialize for RayOperatorConfig
impl Serialize for RayOperatorConfig
impl Part for RayOperatorConfig
Auto Trait Implementations§
impl Freeze for RayOperatorConfig
impl RefUnwindSafe for RayOperatorConfig
impl Send for RayOperatorConfig
impl Sync for RayOperatorConfig
impl Unpin for RayOperatorConfig
impl UnwindSafe for RayOperatorConfig
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