#[non_exhaustive]pub enum SearchRequestScope {
BaseObject = 0,
SingleLevel = 1,
WholeSubtree = 2,
}
Expand description
The scope of the search to be performed.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
BaseObject = 0
The scope is constrained to the entry named by base_object
.
SingleLevel = 1
The scope is constrained to the immediate subordinates of the entry
named by base_object
.
WholeSubtree = 2
The scope is constrained to the entry named by base_object
and to all
its subordinates.
Trait Implementations§
Source§impl AsnType for SearchRequestScope
impl AsnType for SearchRequestScope
Source§const TAG_TREE: TagTree
const TAG_TREE: TagTree
The root of this type’s tree of tag’s if it a CHOICE type, otherwise its
Leaf
that points Self::TAG
.Source§const CONSTRAINTS: Constraints
const CONSTRAINTS: Constraints
The set of constraints for values of the given type.
Source§const IDENTIFIER: Option<&'static str> = None
const IDENTIFIER: Option<&'static str> = None
Identifier of an ASN.1 type as specified in the original specification
if not identical with the identifier of
Self
Source§fn is_present(&self) -> bool
fn is_present(&self) -> bool
Source§impl Clone for SearchRequestScope
impl Clone for SearchRequestScope
Source§fn clone(&self) -> SearchRequestScope
fn clone(&self) -> SearchRequestScope
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 SearchRequestScope
impl Debug for SearchRequestScope
Source§impl Decode for SearchRequestScope
impl Decode for SearchRequestScope
Source§fn decode_with_tag_and_constraints<D>(
decoder: &mut D,
tag: Tag,
constraints: Constraints,
) -> Result<SearchRequestScope, <D as Decoder>::Error>where
D: Decoder,
fn decode_with_tag_and_constraints<D>(
decoder: &mut D,
tag: Tag,
constraints: Constraints,
) -> Result<SearchRequestScope, <D as Decoder>::Error>where
D: Decoder,
Decode this value implicitly tagged with
tag
from a given ASN.1
decoder with a set of constraints on what values of that type are allowed. Read moreSource§fn decode<D>(
decoder: &mut D,
) -> Result<SearchRequestScope, <D as Decoder>::Error>where
D: Decoder,
fn decode<D>(
decoder: &mut D,
) -> Result<SearchRequestScope, <D as Decoder>::Error>where
D: Decoder,
Decode this value from a given ASN.1 decoder. Read more
Source§fn decode_with_tag<D>(
decoder: &mut D,
tag: Tag,
) -> Result<Self, <D as Decoder>::Error>where
D: Decoder,
fn decode_with_tag<D>(
decoder: &mut D,
tag: Tag,
) -> Result<Self, <D as Decoder>::Error>where
D: Decoder,
Decode this value implicitly tagged with
tag
from a given ASN.1 decoder. Read moreSource§fn decode_with_constraints<D>(
decoder: &mut D,
constraints: Constraints,
) -> Result<Self, <D as Decoder>::Error>where
D: Decoder,
fn decode_with_constraints<D>(
decoder: &mut D,
constraints: Constraints,
) -> Result<Self, <D as Decoder>::Error>where
D: Decoder,
Decode this value from a given ASN.1 decoder with a set of constraints
on what values of that type are allowed. Read more
Source§impl Encode for SearchRequestScope
impl Encode for SearchRequestScope
Source§fn encode_with_tag_and_constraints<'encoder, EN>(
&self,
encoder: &mut EN,
tag: Tag,
constraints: Constraints,
) -> Result<(), <EN as Encoder<'encoder>>::Error>where
EN: Encoder<'encoder>,
fn encode_with_tag_and_constraints<'encoder, EN>(
&self,
encoder: &mut EN,
tag: Tag,
constraints: Constraints,
) -> Result<(), <EN as Encoder<'encoder>>::Error>where
EN: Encoder<'encoder>,
Encode this value with
tag
into the given crate::Encoder
with the
constraints the values this is allowed to encode into. Read moreSource§fn encode<'b, E>(
&self,
encoder: &mut E,
) -> Result<(), <E as Encoder<'b>>::Error>where
E: Encoder<'b>,
fn encode<'b, E>(
&self,
encoder: &mut E,
) -> Result<(), <E as Encoder<'b>>::Error>where
E: Encoder<'b>,
Source§fn encode_with_tag<'b, E>(
&self,
encoder: &mut E,
tag: Tag,
) -> Result<(), <E as Encoder<'b>>::Error>where
E: Encoder<'b>,
fn encode_with_tag<'b, E>(
&self,
encoder: &mut E,
tag: Tag,
) -> Result<(), <E as Encoder<'b>>::Error>where
E: Encoder<'b>,
Source§fn encode_with_constraints<'b, E>(
&self,
encoder: &mut E,
constraints: Constraints,
) -> Result<(), <E as Encoder<'b>>::Error>where
E: Encoder<'b>,
fn encode_with_constraints<'b, E>(
&self,
encoder: &mut E,
constraints: Constraints,
) -> Result<(), <E as Encoder<'b>>::Error>where
E: Encoder<'b>,
Encode this value into the given
crate::Encoder
with the
constraints the values this is allowed to encode into. Read moreSource§impl Enumerated for SearchRequestScope
impl Enumerated for SearchRequestScope
Source§const VARIANTS: &'static [SearchRequestScope]
const VARIANTS: &'static [SearchRequestScope]
Variants contained in the “root component list”.
Source§const EXTENDED_VARIANTS: Option<&'static [SearchRequestScope]>
const EXTENDED_VARIANTS: Option<&'static [SearchRequestScope]>
Variants contained in the list of extensions.
Source§const DISCRIMINANTS: &'static [(SearchRequestScope, isize)]
const DISCRIMINANTS: &'static [(SearchRequestScope, isize)]
Variants contained in the “root component list” mapped to their respective discriminant.
Source§const EXTENDED_DISCRIMINANTS: Option<&'static [(SearchRequestScope, isize)]>
const EXTENDED_DISCRIMINANTS: Option<&'static [(SearchRequestScope, isize)]>
Variants contained in the list of extensions mapped to their respective discriminant, if
present.
Source§const IDENTIFIERS: &'static [&'static str]
const IDENTIFIERS: &'static [&'static str]
Identifiers of enum variants
Source§fn extended_variance() -> usize
fn extended_variance() -> usize
Returns the number of “extended” variants for a given type.
Source§fn complete_variance() -> usize
fn complete_variance() -> usize
Returns the number of “root” and “extended” variants for a given type.
Source§fn is_extended_variant(&self) -> bool
fn is_extended_variant(&self) -> bool
Whether
self
is a variant contained in Self::EXTENDED_VARIANTS
.Source§fn enumeration_index(&self) -> usize
fn enumeration_index(&self) -> usize
Returns the enumeration for the variant, if it’s an extended variant
then it will return it’s extended enumeration index.
Source§fn discriminant(&self) -> isize
fn discriminant(&self) -> isize
Returns the discriminant value of
self
.Source§fn from_discriminant(value: isize) -> Option<Self>
fn from_discriminant(value: isize) -> Option<Self>
Returns a variant, if the provided discriminant matches any variant.
Source§fn from_enumeration_index(index: usize) -> Option<Self>
fn from_enumeration_index(index: usize) -> Option<Self>
Returns a variant, if the index matches any “root” variant.
Source§fn from_extended_enumeration_index(index: usize) -> Option<Self>
fn from_extended_enumeration_index(index: usize) -> Option<Self>
Returns a variant, if the index matches any “extended” variant.
Source§fn identifier(&self) -> &'static str
fn identifier(&self) -> &'static str
Returns the variant identifier
Source§fn from_identifier(identifier: &str) -> Option<Self>
fn from_identifier(identifier: &str) -> Option<Self>
Returns a variant, if the provided identifier matches any variant.
Source§impl Hash for SearchRequestScope
impl Hash for SearchRequestScope
Source§impl Ord for SearchRequestScope
impl Ord for SearchRequestScope
Source§fn cmp(&self, other: &SearchRequestScope) -> Ordering
fn cmp(&self, other: &SearchRequestScope) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for SearchRequestScope
impl PartialEq for SearchRequestScope
Source§impl PartialOrd for SearchRequestScope
impl PartialOrd for SearchRequestScope
impl Copy for SearchRequestScope
impl Eq for SearchRequestScope
impl StructuralPartialEq for SearchRequestScope
Auto Trait Implementations§
impl Freeze for SearchRequestScope
impl RefUnwindSafe for SearchRequestScope
impl Send for SearchRequestScope
impl Sync for SearchRequestScope
impl Unpin for SearchRequestScope
impl UnwindSafe for SearchRequestScope
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§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<T> FmtForward for T
impl<T> FmtForward for T
Source§fn fmt_binary(self) -> FmtBinary<Self>where
Self: Binary,
fn fmt_binary(self) -> FmtBinary<Self>where
Self: Binary,
Causes
self
to use its Binary
implementation when Debug
-formatted.Source§fn fmt_display(self) -> FmtDisplay<Self>where
Self: Display,
fn fmt_display(self) -> FmtDisplay<Self>where
Self: Display,
Causes
self
to use its Display
implementation when
Debug
-formatted.Source§fn fmt_lower_exp(self) -> FmtLowerExp<Self>where
Self: LowerExp,
fn fmt_lower_exp(self) -> FmtLowerExp<Self>where
Self: LowerExp,
Causes
self
to use its LowerExp
implementation when
Debug
-formatted.Source§fn fmt_lower_hex(self) -> FmtLowerHex<Self>where
Self: LowerHex,
fn fmt_lower_hex(self) -> FmtLowerHex<Self>where
Self: LowerHex,
Causes
self
to use its LowerHex
implementation when
Debug
-formatted.Source§fn fmt_octal(self) -> FmtOctal<Self>where
Self: Octal,
fn fmt_octal(self) -> FmtOctal<Self>where
Self: Octal,
Causes
self
to use its Octal
implementation when Debug
-formatted.Source§fn fmt_pointer(self) -> FmtPointer<Self>where
Self: Pointer,
fn fmt_pointer(self) -> FmtPointer<Self>where
Self: Pointer,
Causes
self
to use its Pointer
implementation when
Debug
-formatted.Source§fn fmt_upper_exp(self) -> FmtUpperExp<Self>where
Self: UpperExp,
fn fmt_upper_exp(self) -> FmtUpperExp<Self>where
Self: UpperExp,
Causes
self
to use its UpperExp
implementation when
Debug
-formatted.Source§fn fmt_upper_hex(self) -> FmtUpperHex<Self>where
Self: UpperHex,
fn fmt_upper_hex(self) -> FmtUpperHex<Self>where
Self: UpperHex,
Causes
self
to use its UpperHex
implementation when
Debug
-formatted.Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
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 moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
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 moreSource§impl<T> Pipe for Twhere
T: ?Sized,
impl<T> Pipe for Twhere
T: ?Sized,
Source§fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere
Self: Sized,
fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere
Self: Sized,
Pipes by value. This is generally the method you want to use. Read more
Source§fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> Rwhere
R: 'a,
fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> Rwhere
R: 'a,
Borrows
self
and passes that borrow into the pipe function. Read moreSource§fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> Rwhere
R: 'a,
fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> Rwhere
R: 'a,
Mutably borrows
self
and passes that borrow into the pipe function. Read moreSource§fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> R
fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> R
Source§fn pipe_borrow_mut<'a, B, R>(
&'a mut self,
func: impl FnOnce(&'a mut B) -> R,
) -> R
fn pipe_borrow_mut<'a, B, R>( &'a mut self, func: impl FnOnce(&'a mut B) -> R, ) -> R
Source§fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> R
fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> R
Borrows
self
, then passes self.as_ref()
into the pipe function.Source§fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> R
fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> R
Mutably borrows
self
, then passes self.as_mut()
into the pipe
function.Source§fn pipe_deref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> R
fn pipe_deref<'a, T, R>(&'a self, func: impl FnOnce(&'a T) -> R) -> R
Borrows
self
, then passes self.deref()
into the pipe function.Source§impl<T> Tap for T
impl<T> Tap for T
Source§fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Self
fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Self
Immutable access to the
Borrow<B>
of a value. Read moreSource§fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Self
fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Self
Mutable access to the
BorrowMut<B>
of a value. Read moreSource§fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Self
fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Self
Immutable access to the
AsRef<R>
view of a value. Read moreSource§fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Self
fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Self
Mutable access to the
AsMut<R>
view of a value. Read moreSource§fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Self
fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Self
Immutable access to the
Deref::Target
of a value. Read moreSource§fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Self
fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Self
Mutable access to the
Deref::Target
of a value. Read moreSource§fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self
fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self
Calls
.tap()
only in debug builds, and is erased in release builds.Source§fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self
fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self
Calls
.tap_mut()
only in debug builds, and is erased in release
builds.Source§fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Self
fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Self
Calls
.tap_borrow()
only in debug builds, and is erased in release
builds.Source§fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Self
fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Self
Calls
.tap_borrow_mut()
only in debug builds, and is erased in release
builds.Source§fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Self
fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Self
Calls
.tap_ref()
only in debug builds, and is erased in release
builds.Source§fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Self
fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Self
Calls
.tap_ref_mut()
only in debug builds, and is erased in release
builds.Source§fn tap_deref_dbg<T>(self, func: impl FnOnce(&T)) -> Self
fn tap_deref_dbg<T>(self, func: impl FnOnce(&T)) -> Self
Calls
.tap_deref()
only in debug builds, and is erased in release
builds.