pub enum PartialValue {
Show 29 variants Utf8(String), Iutf8(String), Iname(String), Uuid(Uuid), Bool(bool), Syntax(SyntaxType), Index(IndexType), Refer(Uuid), JsonFilt(ProtoFilter), Cred(String), SshKey(String), SecretValue, Spn(String, String), Uint32(u32), Cid(Cid), Nsuniqueid(String), DateTime(OffsetDateTime), EmailAddress(String), PhoneNumber(String), Address(String), Url(Url), OauthScope(String), PrivateBinary, PublicBinary(String), RestrictedString(String), IntentToken(String), UiHint(UiHint), Passkey(Uuid), DeviceKey(Uuid),
}
Expand description

A partial value is a key or key subset that can be used to match for equality or substring against a complete Value within a set in an Entry.

A partialValue is typically used when you need to match against a value, but without requiring all of it’s data or expression. This is common in Filters or other direct lookups and requests.

Variants§

§

Utf8(String)

§

Iutf8(String)

§

Iname(String)

§

Uuid(Uuid)

§

Bool(bool)

§

Syntax(SyntaxType)

§

Index(IndexType)

§

Refer(Uuid)

§

JsonFilt(ProtoFilter)

§

Cred(String)

§

SshKey(String)

§

SecretValue

§

Spn(String, String)

§

Uint32(u32)

§

Cid(Cid)

§

Nsuniqueid(String)

§

DateTime(OffsetDateTime)

§

EmailAddress(String)

§

PhoneNumber(String)

§

Address(String)

§

Url(Url)

§

OauthScope(String)

§

PrivateBinary

§

PublicBinary(String)

§

RestrictedString(String)

§

IntentToken(String)

§

UiHint(UiHint)

§

Passkey(Uuid)

§

DeviceKey(Uuid)

Implementations§

source§

impl PartialValue

source

pub fn new_utf8(s: String) -> Self

source

pub fn new_utf8s(s: &str) -> Self

source

pub fn is_utf8(&self) -> bool

source

pub fn new_iutf8(s: &str) -> Self

source

pub fn new_iname(s: &str) -> Self

source

pub fn new_class(s: &str) -> Self

source

pub fn is_iutf8(&self) -> bool

source

pub fn is_iname(&self) -> bool

source

pub fn new_bool(b: bool) -> Self

source

pub fn new_bools(s: &str) -> Option<Self>

source

pub fn is_bool(&self) -> bool

source

pub fn new_uuid_s(us: &str) -> Option<Self>

source

pub fn is_uuid(&self) -> bool

source

pub fn new_refer_s(us: &str) -> Option<Self>

source

pub fn is_refer(&self) -> bool

source

pub fn new_indexes(s: &str) -> Option<Self>

source

pub fn is_index(&self) -> bool

source

pub fn new_syntaxs(s: &str) -> Option<Self>

source

pub fn is_syntax(&self) -> bool

source

pub fn new_json_filter_s(s: &str) -> Option<Self>

source

pub fn is_json_filter(&self) -> bool

source

pub fn new_credential_tag(s: &str) -> Self

source

pub fn is_credential(&self) -> bool

source

pub fn new_secret_str() -> Self

source

pub fn is_secret_string(&self) -> bool

source

pub fn new_sshkey_tag(s: String) -> Self

source

pub fn new_sshkey_tag_s(s: &str) -> Self

source

pub fn is_sshkey(&self) -> bool

source

pub fn new_spn_s(s: &str) -> Option<Self>

source

pub fn new_spn_nrs(n: &str, r: &str) -> Self

source

pub fn is_spn(&self) -> bool

source

pub fn new_uint32(u: u32) -> Self

source

pub fn new_uint32_str(u: &str) -> Option<Self>

source

pub fn is_uint32(&self) -> bool

source

pub fn new_cid(c: Cid) -> Self

source

pub fn new_cid_s(_c: &str) -> Option<Self>

source

pub fn is_cid(&self) -> bool

source

pub fn new_nsuniqueid_s(s: &str) -> Self

source

pub fn is_nsuniqueid(&self) -> bool

source

pub fn new_datetime_epoch(ts: Duration) -> Self

source

pub fn new_datetime_s(s: &str) -> Option<Self>

source

pub fn is_datetime(&self) -> bool

source

pub fn new_email_address_s(s: &str) -> Self

source

pub fn is_email_address(&self) -> bool

source

pub fn new_phonenumber_s(s: &str) -> Self

source

pub fn new_address(s: &str) -> Self

source

pub fn new_url_s(s: &str) -> Option<Self>

source

pub fn is_url(&self) -> bool

source

pub fn new_oauthscope(s: &str) -> Self

source

pub fn is_oauthscope(&self) -> bool

source

pub fn is_privatebinary(&self) -> bool

source

pub fn new_publicbinary_tag_s(s: &str) -> Self

source

pub fn new_restrictedstring_s(s: &str) -> Self

source

pub fn new_intenttoken_s(s: String) -> Option<Self>

source

pub fn new_passkey_s(us: &str) -> Option<Self>

source

pub fn new_devicekey_s(us: &str) -> Option<Self>

source

pub fn to_str(&self) -> Option<&str>

source

pub fn to_url(&self) -> Option<&Url>

source

pub fn get_idx_eq_key(&self) -> String

source

pub fn get_idx_sub_key(&self) -> String

Trait Implementations§

source§

impl Clone for PartialValue

source§

fn clone(&self) -> PartialValue

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for PartialValue

source§

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

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

impl<'de> Deserialize<'de> for PartialValue

source§

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 From<&bool> for PartialValue

source§

fn from(b: &bool) -> Self

Converts to this type from the input type.
source§

impl From<Filter> for PartialValue

source§

fn from(i: ProtoFilter) -> Self

Converts to this type from the input type.
source§

impl From<IndexType> for PartialValue

source§

fn from(i: IndexType) -> Self

Converts to this type from the input type.
source§

impl From<OffsetDateTime> for PartialValue

source§

fn from(i: OffsetDateTime) -> Self

Converts to this type from the input type.
source§

impl From<SyntaxType> for PartialValue

source§

fn from(s: SyntaxType) -> Self

Converts to this type from the input type.
source§

impl From<Url> for PartialValue

source§

fn from(i: Url) -> Self

Converts to this type from the input type.
source§

impl From<bool> for PartialValue

source§

fn from(b: bool) -> Self

Converts to this type from the input type.
source§

impl From<u32> for PartialValue

source§

fn from(i: u32) -> Self

Converts to this type from the input type.
source§

impl Hash for PartialValue

source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · source§

fn hash_slice<H>(data: &[Self], state: &mut H)where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
source§

impl Ord for PartialValue

source§

fn cmp(&self, other: &PartialValue) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · source§

fn max(self, other: Self) -> Selfwhere Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · source§

fn min(self, other: Self) -> Selfwhere Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · source§

fn clamp(self, min: Self, max: Self) -> Selfwhere Self: Sized + PartialOrd<Self>,

Restrict a value to a certain interval. Read more
source§

impl PartialEq<PartialValue> for PartialValue

source§

fn eq(&self, other: &PartialValue) -> 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 PartialOrd<PartialValue> for PartialValue

source§

fn partial_cmp(&self, other: &PartialValue) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · source§

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

This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · source§

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

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · source§

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

This method tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · source§

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

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
source§

impl Serialize for PartialValue

source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
source§

impl Eq for PartialValue

source§

impl StructuralEq for PartialValue

source§

impl StructuralPartialEq for PartialValue

Auto Trait Implementations§

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
§

impl<'a, T> AsTaggedExplicit<'a> for Twhere T: 'a,

§

fn explicit(self, class: Class, tag: u32) -> TaggedParser<'a, Explicit, Self>

§

impl<'a, T> AsTaggedImplicit<'a> for Twhere T: 'a,

§

fn implicit( self, class: Class, constructed: bool, tag: u32 ) -> TaggedParser<'a, Implicit, Self>

source§

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

const: unstable · source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

const: unstable · source§

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

Mutably borrows from an owned value. Read more
§

impl<T> CallHasher for Twhere T: Hash + ?Sized,

§

fn get_hash<H, B>(value: &H, build_hasher: &B) -> u64where H: Hash + ?Sized, B: BuildHasher,

source§

impl<T> DynClone for Twhere T: Clone,

source§

fn __clone_box(&self, _: Private) -> *mut ()

source§

impl<T> From<T> for T

const: unstable · source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

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

const: unstable · 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.

§

impl<T> Pointable for T

§

const ALIGN: usize = mem::align_of::<T>()

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
source§

impl<T> Same<T> for T

§

type Output = T

Should always be Self
source§

impl<T> Serialize for Twhere T: Serialize + ?Sized,

source§

fn erased_serialize(&self, serializer: &mut dyn Serializer) -> Result<Ok, Error>

source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

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

§

type Error = Infallible

The type returned in the event of a conversion error.
const: unstable · 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.
const: unstable · source§

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

Performs the conversion.
§

impl<V, T> VZip<V> for Twhere V: MultiLane<T>,

§

fn vzip(self) -> V

source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

impl<T> DeserializeOwned for Twhere T: for<'de> Deserialize<'de>,