#[non_exhaustive]pub struct RayMetricSpec {
pub disabled: bool,
/* private fields */
}Available on crate feature
persistent-resource-service only.Expand description
Configuration for the Ray metrics.
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.disabled: boolOptional. Flag to disable the Ray metrics collection.
Implementations§
Trait Implementations§
Source§impl Clone for RayMetricSpec
impl Clone for RayMetricSpec
Source§fn clone(&self) -> RayMetricSpec
fn clone(&self) -> RayMetricSpec
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 RayMetricSpec
impl Debug for RayMetricSpec
Source§impl Default for RayMetricSpec
impl Default for RayMetricSpec
Source§fn default() -> RayMetricSpec
fn default() -> RayMetricSpec
Returns the “default value” for a type. Read more
Source§impl Message for RayMetricSpec
impl Message for RayMetricSpec
Source§impl PartialEq for RayMetricSpec
impl PartialEq for RayMetricSpec
impl StructuralPartialEq for RayMetricSpec
Auto Trait Implementations§
impl Freeze for RayMetricSpec
impl RefUnwindSafe for RayMetricSpec
impl Send for RayMetricSpec
impl Sync for RayMetricSpec
impl Unpin for RayMetricSpec
impl UnwindSafe for RayMetricSpec
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