pub struct CCErrorOtherInfo {
pub param: Option<String>,
pub values: Option<Vec<StringOrInt>>,
pub instrument_status: Option<String>,
pub first: Option<i64>,
pub last: Option<i64>,
pub first_bucket: Option<i64>,
}
Fields§
§param: Option<String>
The parameter that is responsible for the error.
values: Option<Vec<StringOrInt>>
The values responsible for the error.
instrument_status: Option<String>
Status of the instrument.
first: Option<i64>
First available timestamp.
last: Option<i64>
Last available timestamp.
first_bucket: Option<i64>
Earliest bucket timestamp.
Trait Implementations§
Source§impl Debug for CCErrorOtherInfo
impl Debug for CCErrorOtherInfo
Source§impl<'de> Deserialize<'de> for CCErrorOtherInfo
impl<'de> Deserialize<'de> for CCErrorOtherInfo
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
Auto Trait Implementations§
impl Freeze for CCErrorOtherInfo
impl RefUnwindSafe for CCErrorOtherInfo
impl Send for CCErrorOtherInfo
impl Sync for CCErrorOtherInfo
impl Unpin for CCErrorOtherInfo
impl UnwindSafe for CCErrorOtherInfo
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