pub struct AirbyteStateStats {
pub record_count: Option<f64>,
}
Fields§
§record_count: Option<f64>
the number of records which were emitted for this state message, for this stream or global. While the value should always be a round number, it is defined as a double to account for integer overflows, and the value should always have a decimal point for proper serialization.
Trait Implementations§
Source§impl Clone for AirbyteStateStats
impl Clone for AirbyteStateStats
Source§fn clone(&self) -> AirbyteStateStats
fn clone(&self) -> AirbyteStateStats
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 AirbyteStateStats
impl Debug for AirbyteStateStats
Source§impl<'de> Deserialize<'de> for AirbyteStateStats
impl<'de> Deserialize<'de> for AirbyteStateStats
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 AirbyteStateStats
impl PartialEq for AirbyteStateStats
Source§impl Serialize for AirbyteStateStats
impl Serialize for AirbyteStateStats
impl StructuralPartialEq for AirbyteStateStats
Auto Trait Implementations§
impl Freeze for AirbyteStateStats
impl RefUnwindSafe for AirbyteStateStats
impl Send for AirbyteStateStats
impl Sync for AirbyteStateStats
impl Unpin for AirbyteStateStats
impl UnwindSafe for AirbyteStateStats
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