pub struct PartialDataBoundary {
pub complete: bool,
pub reasons: Vec<String>,
}Expand description
Whether a diagnostic batch covers the intended scope or was bounded by partial data / an instrument limit.
Fields§
§complete: bool§reasons: Vec<String>Implementations§
Trait Implementations§
Source§impl Clone for PartialDataBoundary
impl Clone for PartialDataBoundary
Source§fn clone(&self) -> PartialDataBoundary
fn clone(&self) -> PartialDataBoundary
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 PartialDataBoundary
impl Debug for PartialDataBoundary
impl Eq for PartialDataBoundary
Source§impl Hash for PartialDataBoundary
impl Hash for PartialDataBoundary
Source§impl PartialEq for PartialDataBoundary
impl PartialEq for PartialDataBoundary
impl StructuralPartialEq for PartialDataBoundary
Auto Trait Implementations§
impl Freeze for PartialDataBoundary
impl RefUnwindSafe for PartialDataBoundary
impl Send for PartialDataBoundary
impl Sync for PartialDataBoundary
impl Unpin for PartialDataBoundary
impl UnsafeUnpin for PartialDataBoundary
impl UnwindSafe for PartialDataBoundary
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