Enum kanidmd_lib::value::Value

source ·
pub enum Value {
Show 47 variants Utf8(String), Iutf8(String), Iname(String), Uuid(Uuid), Bool(bool), Syntax(SyntaxType), Index(IndexType), Refer(Uuid), JsonFilt(Filter), Cred(String, Credential), SshKey(String, PublicKey), SecretValue(String), Spn(String, String), Uint32(u32), Cid(Cid), Nsuniqueid(String), DateTime(OffsetDateTime), EmailAddress(String, bool), PhoneNumber(String, bool), Address(Address), Url(Url), OauthScope(String), OauthScopeMap(Uuid, BTreeSet<String>), PrivateBinary(Vec<u8>), PublicBinary(String, Vec<u8>), RestrictedString(String), IntentToken(String, IntentTokenState), Passkey(Uuid, String, Passkey), AttestedPasskey(Uuid, String, AttestedPasskey), Session(Uuid, Session), ApiToken(Uuid, ApiToken), Oauth2Session(Uuid, Oauth2Session), JwsKeyEs256(JwsEs256Signer), JwsKeyRs256(JwsRs256Signer), UiHint(UiHint), TotpSecret(String, Totp), AuditLogString(Cid, String), EcKeyPrivate(EcKey<Private>), Image(ImageValue), CredentialType(CredentialType), WebauthnAttestationCaList(AttestationCaList), OauthClaimValue(String, Uuid, BTreeSet<String>), OauthClaimMap(String, OauthClaimMapJoin), KeyInternal { id: String, usage: KeyUsage, valid_from: u64, status: KeyStatus, status_cid: Cid, der: Vec<u8>, }, HexString(String), Certificate(Box<Certificate>), ApplicationPassword(ApplicationPassword),
}
Expand description

A value is a complete unit of data for an attribute. It is made up of a PartialValue, which is used for selection, filtering, searching, matching etc. It also contains supplemental data which may be stored inside of the Value, such as credential secrets, blobs etc.

This type is used when you need the “full data” of an attribute. Typically this is in a create or modification operation where you are applying a set of complete values into an entry.

Variants§

§

Utf8(String)

§

Iutf8(String)

Case insensitive string

§

Iname(String)

Case insensitive Name for a thing

§

Uuid(Uuid)

§

Bool(bool)

§

Syntax(SyntaxType)

§

Index(IndexType)

§

Refer(Uuid)

§

JsonFilt(Filter)

§

Cred(String, Credential)

§

SshKey(String, PublicKey)

§

SecretValue(String)

§

Spn(String, String)

§

Uint32(u32)

§

Cid(Cid)

§

Nsuniqueid(String)

§

DateTime(OffsetDateTime)

§

EmailAddress(String, bool)

§

PhoneNumber(String, bool)

§

Address(Address)

§

Url(Url)

§

OauthScope(String)

§

OauthScopeMap(Uuid, BTreeSet<String>)

§

PrivateBinary(Vec<u8>)

§

PublicBinary(String, Vec<u8>)

§

RestrictedString(String)

§

IntentToken(String, IntentTokenState)

§

Passkey(Uuid, String, Passkey)

§

AttestedPasskey(Uuid, String, AttestedPasskey)

§

Session(Uuid, Session)

§

ApiToken(Uuid, ApiToken)

§

Oauth2Session(Uuid, Oauth2Session)

§

JwsKeyEs256(JwsEs256Signer)

§

JwsKeyRs256(JwsRs256Signer)

§

UiHint(UiHint)

§

TotpSecret(String, Totp)

§

AuditLogString(Cid, String)

§

EcKeyPrivate(EcKey<Private>)

§

Image(ImageValue)

§

CredentialType(CredentialType)

§

WebauthnAttestationCaList(AttestationCaList)

§

OauthClaimValue(String, Uuid, BTreeSet<String>)

§

OauthClaimMap(String, OauthClaimMapJoin)

§

KeyInternal

Fields

§usage: KeyUsage
§valid_from: u64
§status: KeyStatus
§status_cid: Cid
§der: Vec<u8>
§

HexString(String)

§

Certificate(Box<Certificate>)

§

ApplicationPassword(ApplicationPassword)

Implementations§

source§

impl Value

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 is_iutf8(&self) -> bool

source

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

source

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

source

pub fn is_insensitive_utf8(&self) -> bool

source

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

source

pub fn is_iname(&self) -> bool

source

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

source

pub fn is_uuid(&self) -> bool

source

pub fn new_bool(b: bool) -> Self

source

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

source

pub fn new_audit_log_string(e: (Cid, String)) -> Option<Self>

source

pub fn is_bool(&self) -> bool

source

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

source

pub fn new_syntax(s: SyntaxType) -> Self

source

pub fn is_syntax(&self) -> bool

source

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

source

pub fn new_index(i: IndexType) -> Self

source

pub fn is_index(&self) -> bool

source

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

source

pub fn is_refer(&self) -> bool

source

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

source

pub fn new_json_filter(f: ProtoFilter) -> Self

source

pub fn is_json_filter(&self) -> bool

source

pub fn as_json_filter(&self) -> Option<&ProtoFilter>

source

pub fn new_credential(tag: &str, cred: Credential) -> Self

source

pub fn is_credential(&self) -> bool

source

pub fn to_credential(&self) -> Option<&Credential>

source

pub fn new_hex_string_s(hexstr: &str) -> Option<Self>

source

pub fn new_certificate_s(cert_str: &str) -> Option<Self>

source

pub fn new_image(input: &str) -> Result<Self, OperationError>

Want a Value::Image? use this!

source

pub fn new_secret_str(cleartext: &str) -> Self

source

pub fn is_secret_string(&self) -> bool

source

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

source

pub fn new_sshkey_str(tag: &str, key: &str) -> Result<Self, OperationError>

source

pub fn is_sshkey(&self) -> bool

source

pub fn get_sshkey(&self) -> Option<String>

source

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

source

pub fn new_spn_str(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 is_cid(&self) -> bool

source

pub fn new_nsuniqueid_s(s: &str) -> Option<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 new_datetime(dt: OffsetDateTime) -> Self

source

pub fn to_datetime(&self) -> Option<OffsetDateTime>

source

pub fn is_datetime(&self) -> bool

source

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

source

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

source

pub fn is_email_address(&self) -> bool

source

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

source

pub fn new_address(a: Address) -> Self

source

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

source

pub fn new_url(u: Url) -> Self

source

pub fn is_url(&self) -> bool

source

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

source

pub fn is_oauthscope(&self) -> bool

source

pub fn new_oauthscopemap(u: Uuid, m: BTreeSet<String>) -> Option<Self>

source

pub fn new_oauthclaimmap( n: String, u: Uuid, c: BTreeSet<String>, ) -> Option<Self>

source

pub fn is_oauthscopemap(&self) -> bool

source

pub fn new_privatebinary(der: &[u8]) -> Self

source

pub fn to_privatebinary(&self) -> Option<&Vec<u8>>

source

pub fn is_privatebinary(&self) -> bool

source

pub fn new_publicbinary(tag: String, der: Vec<u8>) -> Self

source

pub fn new_restrictedstring(s: String) -> Self

source

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

source

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

source

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

source

pub fn as_string(&self) -> Option<&String>

source

pub fn to_ref_uuid(&self) -> Option<Uuid>

source

pub fn to_uuid(&self) -> Option<&Uuid>

source

pub fn to_indextype(&self) -> Option<&IndexType>

source

pub fn to_syntaxtype(&self) -> Option<&SyntaxType>

source

pub fn to_bool(&self) -> Option<bool>

source

pub fn to_uint32(&self) -> Option<u32>

source

pub fn to_utf8(self) -> Option<String>

source

pub fn to_iutf8(self) -> Option<String>

source

pub fn to_iname(self) -> Option<String>

source

pub fn to_jsonfilt(self) -> Option<ProtoFilter>

source

pub fn to_cred(self) -> Option<(String, Credential)>

source

pub fn to_spn(self) -> Option<(String, String)>

source

pub fn to_cid(self) -> Option<Cid>

source

pub fn to_nsuniqueid(self) -> Option<String>

source

pub fn to_emailaddress(self) -> Option<String>

source

pub fn to_oauthscope(self) -> Option<String>

source

pub fn to_oauthscopemap(self) -> Option<(Uuid, BTreeSet<String>)>

source

pub fn to_restrictedstring(self) -> Option<String>

source

pub fn to_phonenumber(self) -> Option<String>

source

pub fn to_publicbinary(self) -> Option<(String, Vec<u8>)>

source

pub fn to_address(self) -> Option<Address>

source

pub fn to_intenttoken(self) -> Option<(String, IntentTokenState)>

source

pub fn to_session(self) -> Option<(Uuid, Session)>

source

pub fn migrate_iutf8_iname(self) -> Option<Self>

Trait Implementations§

source§

impl Clone for Value

source§

fn clone(&self) -> Value

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 Value

source§

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

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

impl From<&bool> for Value

source§

fn from(b: &bool) -> Self

Converts to this type from the input type.
source§

impl From<Attribute> for Value

source§

fn from(attr: Attribute) -> Value

Converts to this type from the input type.
source§

impl From<CredentialType> for Value

source§

fn from(ct: CredentialType) -> Value

Converts to this type from the input type.
source§

impl From<EntryClass> for Value

source§

fn from(val: EntryClass) -> Self

Converts to this type from the input type.
source§

impl From<Filter> for Value

source§

fn from(i: ProtoFilter) -> Self

Converts to this type from the input type.
source§

impl From<IndexType> for Value

source§

fn from(i: IndexType) -> Self

Converts to this type from the input type.
source§

impl From<OffsetDateTime> for Value

source§

fn from(i: OffsetDateTime) -> Self

Converts to this type from the input type.
source§

impl From<SyntaxType> for Value

source§

fn from(s: SyntaxType) -> Self

Converts to this type from the input type.
source§

impl From<Url> for Value

source§

fn from(i: Url) -> Self

Converts to this type from the input type.
source§

impl From<bool> for Value

source§

fn from(b: bool) -> Self

Converts to this type from the input type.
source§

impl From<u32> for Value

source§

fn from(i: u32) -> Self

Converts to this type from the input type.
source§

impl PartialEq for Value

source§

fn eq(&self, other: &Self) -> 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 Eq for Value

Auto Trait Implementations§

§

impl Freeze for Value

§

impl RefUnwindSafe for Value

§

impl Send for Value

§

impl Sync for Value

§

impl Unpin for Value

§

impl UnwindSafe for Value

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
§

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

§

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

§

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

§

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

source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

source§

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

Mutably borrows from an owned value. Read more
source§

impl<T> CloneToUninit for T
where T: Clone,

source§

default unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
source§

impl<T> DynClone for T
where T: Clone,

source§

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

§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

§

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
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

source§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> FromRef<T> for T
where T: Clone,

§

fn from_ref(input: &T) -> T

Converts to this type from a reference to the input type.
§

impl<T> FutureExt for T

§

fn with_context(self, otel_cx: Context) -> WithContext<Self>

Attaches the provided Context to this type, returning a WithContext wrapper. Read more
§

fn with_current_context(self) -> WithContext<Self>

Attaches the current Context to this type, returning a WithContext wrapper. Read more
§

impl<T> Instrument for T

§

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

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

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 T
where 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> IntoEither for T

source§

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 more
source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

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
source§

impl<T> IntoRequest<T> for T

source§

fn into_request(self) -> Request<T>

Wrap the input message T in a tonic::Request
§

impl<T> Pointable for T

§

const ALIGN: usize = _

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 for T

§

type Output = T

Should always be Self
source§

impl<T> ToOwned for T
where 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 T
where 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 T
where 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.
§

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

§

fn vzip(self) -> V

§

impl<T> WithSubscriber for T

§

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
§

fn with_current_subscriber(self) -> WithDispatch<Self>

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