pub enum PageWriteType {
Update,
Clear,
}
Variants§
Trait Implementations§
source§impl AsRef<str> for PageWriteType
impl AsRef<str> for PageWriteType
source§impl Clone for PageWriteType
impl Clone for PageWriteType
source§fn clone(&self) -> PageWriteType
fn clone(&self) -> PageWriteType
Returns a copy 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 PageWriteType
impl Debug for PageWriteType
source§impl<'de> Deserialize<'de> for PageWriteType
impl<'de> Deserialize<'de> for PageWriteType
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
source§impl Display for PageWriteType
impl Display for PageWriteType
source§impl From<PageWriteType> for &'static str
impl From<PageWriteType> for &'static str
source§fn from(e: PageWriteType) -> Self
fn from(e: PageWriteType) -> Self
Converts to this type from the input type.
source§impl FromStr for PageWriteType
impl FromStr for PageWriteType
source§impl FromStringOptional<PageWriteType> for PageWriteType
impl FromStringOptional<PageWriteType> for PageWriteType
fn from_str_optional(s: &str) -> Result<PageWriteType>
source§impl PartialEq for PageWriteType
impl PartialEq for PageWriteType
source§impl PartialOrd for PageWriteType
impl PartialOrd for PageWriteType
source§impl Serialize for PageWriteType
impl Serialize for PageWriteType
impl Copy for PageWriteType
impl Eq for PageWriteType
impl StructuralPartialEq for PageWriteType
Auto Trait Implementations§
impl Freeze for PageWriteType
impl RefUnwindSafe for PageWriteType
impl Send for PageWriteType
impl Sync for PageWriteType
impl Unpin for PageWriteType
impl UnwindSafe for PageWriteType
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§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.