pub enum RowsPerPartition {
All,
None,
Count(i32),
}
Variants§
Trait Implementations§
Source§impl Clone for RowsPerPartition
impl Clone for RowsPerPartition
Source§fn clone(&self) -> RowsPerPartition
fn clone(&self) -> RowsPerPartition
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl<'a> CustomToTokens<'a> for RowsPerPartition
impl<'a> CustomToTokens<'a> for RowsPerPartition
Source§impl Debug for RowsPerPartition
impl Debug for RowsPerPartition
Source§impl Display for RowsPerPartition
impl Display for RowsPerPartition
Source§impl FromStr for RowsPerPartition
impl FromStr for RowsPerPartition
Source§impl Parse for RowsPerPartition
impl Parse for RowsPerPartition
type Output = RowsPerPartition
fn parse(s: &mut StatementStream<'_>) -> Result<Self::Output>
Source§impl PartialEq for RowsPerPartition
impl PartialEq for RowsPerPartition
Source§impl ToTokens for RowsPerPartition
impl ToTokens for RowsPerPartition
Source§fn to_token_stream(&self) -> TokenStream
fn to_token_stream(&self) -> TokenStream
Source§fn into_token_stream(self) -> TokenStreamwhere
Self: Sized,
fn into_token_stream(self) -> TokenStreamwhere
Self: Sized,
impl Copy for RowsPerPartition
impl Eq for RowsPerPartition
impl StructuralPartialEq for RowsPerPartition
Auto Trait Implementations§
impl Freeze for RowsPerPartition
impl RefUnwindSafe for RowsPerPartition
impl Send for RowsPerPartition
impl Sync for RowsPerPartition
impl Unpin for RowsPerPartition
impl UnwindSafe for RowsPerPartition
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