pub struct AirbyteEstimateTraceMessage {
pub byte_estimate: Option<i64>,
pub name: String,
pub namespace: Option<String>,
pub row_estimate: Option<i64>,
}
Fields§
§byte_estimate: Option<i64>
The estimated number of bytes to be emitted by this sync for this stream
name: String
The name of the stream
namespace: Option<String>
The namespace of the stream
row_estimate: Option<i64>
The estimated number of rows to be emitted by this sync for this stream
Trait Implementations§
Source§impl Clone for AirbyteEstimateTraceMessage
impl Clone for AirbyteEstimateTraceMessage
Source§fn clone(&self) -> AirbyteEstimateTraceMessage
fn clone(&self) -> AirbyteEstimateTraceMessage
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 AirbyteEstimateTraceMessage
impl Debug for AirbyteEstimateTraceMessage
Source§impl<'de> Deserialize<'de> for AirbyteEstimateTraceMessage
impl<'de> Deserialize<'de> for AirbyteEstimateTraceMessage
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
impl StructuralPartialEq for AirbyteEstimateTraceMessage
Auto Trait Implementations§
impl Freeze for AirbyteEstimateTraceMessage
impl RefUnwindSafe for AirbyteEstimateTraceMessage
impl Send for AirbyteEstimateTraceMessage
impl Sync for AirbyteEstimateTraceMessage
impl Unpin for AirbyteEstimateTraceMessage
impl UnwindSafe for AirbyteEstimateTraceMessage
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