pub struct MetricsParameters {
pub format: Option<MetricsFormat>,
}
Expand description
Query parameters to retrieve pipeline circuit metrics.
JSON schema
{
"description": "Query parameters to retrieve pipeline circuit metrics.",
"type": "object",
"properties": {
"format": {
"$ref": "#/components/schemas/MetricsFormat"
}
}
}
Fields§
§format: Option<MetricsFormat>
Implementations§
Source§impl MetricsParameters
impl MetricsParameters
pub fn builder() -> MetricsParameters
Trait Implementations§
Source§impl Clone for MetricsParameters
impl Clone for MetricsParameters
Source§fn clone(&self) -> MetricsParameters
fn clone(&self) -> MetricsParameters
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 MetricsParameters
impl Debug for MetricsParameters
Source§impl<'de> Deserialize<'de> for MetricsParameters
impl<'de> Deserialize<'de> for MetricsParameters
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 From<&MetricsParameters> for MetricsParameters
impl From<&MetricsParameters> for MetricsParameters
Source§fn from(value: &MetricsParameters) -> Self
fn from(value: &MetricsParameters) -> Self
Converts to this type from the input type.
Source§impl From<MetricsParameters> for MetricsParameters
impl From<MetricsParameters> for MetricsParameters
Source§fn from(value: MetricsParameters) -> Self
fn from(value: MetricsParameters) -> Self
Converts to this type from the input type.
Source§impl Serialize for MetricsParameters
impl Serialize for MetricsParameters
Source§impl TryFrom<MetricsParameters> for MetricsParameters
impl TryFrom<MetricsParameters> for MetricsParameters
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(value: MetricsParameters) -> Result<Self, ConversionError>
fn try_from(value: MetricsParameters) -> Result<Self, ConversionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for MetricsParameters
impl RefUnwindSafe for MetricsParameters
impl Send for MetricsParameters
impl Sync for MetricsParameters
impl Unpin for MetricsParameters
impl UnwindSafe for MetricsParameters
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