pub struct SeriesFlags { /* private fields */ }Expand description
Series 元数据标志,用于优化性能
Implementations§
Source§impl SeriesFlags
impl SeriesFlags
Sourcepub fn is_sorted_ascending(&self) -> bool
pub fn is_sorted_ascending(&self) -> bool
检查是否按升序排序
Sourcepub fn is_sorted_descending(&self) -> bool
pub fn is_sorted_descending(&self) -> bool
检查是否按降序排序
Trait Implementations§
Source§impl Clone for SeriesFlags
impl Clone for SeriesFlags
Source§fn clone(&self) -> SeriesFlags
fn clone(&self) -> SeriesFlags
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 SeriesFlags
impl Debug for SeriesFlags
Source§impl Default for SeriesFlags
impl Default for SeriesFlags
Source§fn default() -> SeriesFlags
fn default() -> SeriesFlags
Returns the “default value” for a type. Read more
impl Copy for SeriesFlags
Auto Trait Implementations§
impl Freeze for SeriesFlags
impl RefUnwindSafe for SeriesFlags
impl Send for SeriesFlags
impl Sync for SeriesFlags
impl Unpin for SeriesFlags
impl UnwindSafe for SeriesFlags
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
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