[][src]Enum libfrugalos::expect::Expect

pub enum Expect {
    Any,
    None,
    IfMatch(Vec<ObjectVersion>),
    IfNoneMatch(Vec<ObjectVersion>),
}

操作対象オブジェクトに期待するバージョンを表現するためのデータ構造.

Variants

Any

任意のバージョンに対して適用可能.

None

オブジェクトが既に存在しない場合にのみ適用可能.

IfMatch(Vec<ObjectVersion>)

指定バージョンのオブジェクトに対してのみ適用可能.

IfNoneMatch(Vec<ObjectVersion>)

オブジェクトのバージョンが指定のもの以外の場合にのみ適用可能.

Methods

impl Expect[src]

pub fn validate(&self, version: Option<ObjectVersion>) -> Result<()>[src]

引数で指定されたバージョンが、期待するものかどうかを検証する。

Trait Implementations

impl Eq for Expect[src]

impl Default for Expect[src]

impl PartialEq<Expect> for Expect[src]

impl Clone for Expect[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Debug for Expect[src]

impl Serialize for Expect[src]

impl<'de> Deserialize<'de> for Expect[src]

Auto Trait Implementations

impl Send for Expect

impl Sync for Expect

Blanket Implementations

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T> From for T[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> SendSyncUnwindSafe for T where
    T: Send + Sync + UnwindSafe + ?Sized