pub struct PageType(pub i32);
👎Deprecated since 57.0.0: The
format
module is no longer maintained, and will be removed in 59.0.0
Tuple Fields§
§0: i32
👎Deprecated since 57.0.0: The
format
module is no longer maintained, and will be removed in 59.0.0
Implementations§
Source§impl PageType
impl PageType
pub const DATA_PAGE: PageType
👎Deprecated since 57.0.0: The
format
module is no longer maintained, and will be removed in 59.0.0
pub const INDEX_PAGE: PageType
👎Deprecated since 57.0.0: The
format
module is no longer maintained, and will be removed in 59.0.0
pub const DICTIONARY_PAGE: PageType
👎Deprecated since 57.0.0: The
format
module is no longer maintained, and will be removed in 59.0.0
pub const DATA_PAGE_V2: PageType
👎Deprecated since 57.0.0: The
format
module is no longer maintained, and will be removed in 59.0.0
pub const ENUM_VALUES: &'static [Self]
👎Deprecated since 57.0.0: The
format
module is no longer maintained, and will be removed in 59.0.0
Trait Implementations§
Source§impl Ord for PageType
impl Ord for PageType
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialOrd for PageType
impl PartialOrd for PageType
Source§impl TSerializable for PageType
impl TSerializable for PageType
Source§fn write_to_out_protocol<T: TOutputProtocol>(
&self,
o_prot: &mut T,
) -> Result<()>
fn write_to_out_protocol<T: TOutputProtocol>( &self, o_prot: &mut T, ) -> Result<()>
Writes the struct to the output Thrift protocol
Source§fn read_from_in_protocol<T: TInputProtocol>(i_prot: &mut T) -> Result<PageType>
fn read_from_in_protocol<T: TInputProtocol>(i_prot: &mut T) -> Result<PageType>
Reads the struct from the input Thrift protocol
impl Copy for PageType
impl Eq for PageType
impl StructuralPartialEq for PageType
Auto Trait Implementations§
impl Freeze for PageType
impl RefUnwindSafe for PageType
impl Send for PageType
impl Sync for PageType
impl Unpin for PageType
impl UnwindSafe for PageType
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,
§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.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