Enum pearl::ReadResult

source ·
pub enum ReadResult<T> {
    Found(T),
    Deleted(BlobRecordTimestamp),
    NotFound,
}
Expand description

Result of read operations

Variants§

§

Found(T)

Data was found

§

Deleted(BlobRecordTimestamp)

Data was deleted, contains creation timestamp

§

NotFound

Data was not found

Implementations§

source§

impl<T> ReadResult<T>

source

pub fn is_found(&self) -> bool

Is this found result

source

pub fn is_deleted(&self) -> bool

Is this deleted result

source

pub fn is_not_found(&self) -> bool

Is this not found result

source

pub fn into_option(self) -> Option<T>

Convert to option if data exists

source

pub fn map<Y>(self, f: impl FnOnce(T) -> Y) -> ReadResult<Y>

Map data if it exists

source

pub fn cast<Y>(self) -> ReadResult<Y>

Cast result to type only if does not contain value Warning: panics if result contains value

source

pub async fn map_async<Y, F>(self, f: impl FnOnce(T) -> F) -> ReadResult<Y>where F: Future<Output = Y>,

Map data if it exists

source

pub fn unwrap(self) -> T

Unwrap into data, panics if no data is set

source§

impl ReadResult<BlobRecordTimestamp>

source

pub fn latest( self, other: ReadResult<BlobRecordTimestamp> ) -> ReadResult<BlobRecordTimestamp>

Returns ReadResult<BlobRecordTimestamp> with max timetamp. If timestamps are equal, then self is preserved

source§

impl ReadResult<Entry>

source

pub fn latest(self, other: ReadResult<Entry>) -> ReadResult<Entry>

Returns ReadResult<Entry> with max timetamp. If timestamps are equal, then self is preserved

Trait Implementations§

source§

impl<T: Debug> Debug for ReadResult<T>

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<T: PartialEq> PartialEq<ReadResult<T>> for ReadResult<T>

source§

fn eq(&self, other: &ReadResult<T>) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl<T: Eq> Eq for ReadResult<T>

source§

impl<T> StructuralEq for ReadResult<T>

source§

impl<T> StructuralPartialEq for ReadResult<T>

Auto Trait Implementations§

§

impl<T> RefUnwindSafe for ReadResult<T>where T: RefUnwindSafe,

§

impl<T> Send for ReadResult<T>where T: Send,

§

impl<T> Sync for ReadResult<T>where T: Sync,

§

impl<T> Unpin for ReadResult<T>where T: Unpin,

§

impl<T> UnwindSafe for ReadResult<T>where T: UnwindSafe,

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> Same<T> for T

§

type Output = T

Should always be Self
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.