pub struct TimeSeriesRejection {
pub time_series_identification: Option<AttrV<DocumentId>>,
pub reasons: Vec<AckReason>,
}Expand description
Rejection detail for a single time series within the received document.
Fields§
§time_series_identification: Option<AttrV<DocumentId>>The TimeSeriesIdentification or AllocationIdentification of the
rejected time series.
reasons: Vec<AckReason>Reasons for the rejection.
Trait Implementations§
Source§impl Clone for TimeSeriesRejection
impl Clone for TimeSeriesRejection
Source§fn clone(&self) -> TimeSeriesRejection
fn clone(&self) -> TimeSeriesRejection
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 TimeSeriesRejection
impl Debug for TimeSeriesRejection
Source§impl<'de> Deserialize<'de> for TimeSeriesRejection
impl<'de> Deserialize<'de> for TimeSeriesRejection
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 PartialEq for TimeSeriesRejection
impl PartialEq for TimeSeriesRejection
Source§fn eq(&self, other: &TimeSeriesRejection) -> bool
fn eq(&self, other: &TimeSeriesRejection) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for TimeSeriesRejection
impl Serialize for TimeSeriesRejection
impl StructuralPartialEq for TimeSeriesRejection
Auto Trait Implementations§
impl Freeze for TimeSeriesRejection
impl RefUnwindSafe for TimeSeriesRejection
impl Send for TimeSeriesRejection
impl Sync for TimeSeriesRejection
impl Unpin for TimeSeriesRejection
impl UnsafeUnpin for TimeSeriesRejection
impl UnwindSafe for TimeSeriesRejection
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