pub struct ClusterStat {
pub cluster: i32,
pub n_nodes: u32,
pub n_isbns: u32,
pub n_loc_recs: u32,
pub n_ol_editions: u32,
pub n_ol_works: u32,
pub n_gr_books: u32,
pub n_gr_works: u32,
}
Fields§
§cluster: i32
§n_nodes: u32
§n_isbns: u32
§n_loc_recs: u32
§n_ol_editions: u32
§n_ol_works: u32
§n_gr_books: u32
§n_gr_works: u32
Implementations§
Source§impl ClusterStat
impl ClusterStat
Trait Implementations§
Source§impl Debug for ClusterStat
impl Debug for ClusterStat
Source§impl Default for ClusterStat
impl Default for ClusterStat
Source§fn default() -> ClusterStat
fn default() -> ClusterStat
Returns the “default value” for a type. Read more
Source§impl RecordWriter<ClusterStat> for &[ClusterStat]
impl RecordWriter<ClusterStat> for &[ClusterStat]
Source§fn write_to_row_group<W: Write + Send>(
&self,
row_group_writer: &mut SerializedRowGroupWriter<'_, W>,
) -> Result<(), ParquetError>
fn write_to_row_group<W: Write + Send>( &self, row_group_writer: &mut SerializedRowGroupWriter<'_, W>, ) -> Result<(), ParquetError>
Writes from
self
into row_group_writer
.Auto Trait Implementations§
impl Freeze for ClusterStat
impl RefUnwindSafe for ClusterStat
impl Send for ClusterStat
impl Sync for ClusterStat
impl Unpin for ClusterStat
impl UnwindSafe for ClusterStat
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more