Enum ldap_types::schema::ObjectClassType
source · [−]pub enum ObjectClassType {
Abstract,
Structural,
Auxiliary,
}
Expand description
type of LDAP object class
Variants
Abstract
this can not be used as an actual object class and is purely used as a parent for the other types
Structural
this is the main objectclass of an object, other than structural classes that are ancestors in the inheritance hierarchy only one of these can be used on any given LDAP object
Auxiliary
these are objectclasses that are added on to the main structural object class of an entry
Implementations
sourceimpl ObjectClassType
impl ObjectClassType
sourcepub fn is_abstract(&self) -> bool
pub fn is_abstract(&self) -> bool
Returns true
if self
is of variant Abstract
.
sourcepub fn is_structural(&self) -> bool
pub fn is_structural(&self) -> bool
Returns true
if self
is of variant Structural
.
sourcepub fn is_auxiliary(&self) -> bool
pub fn is_auxiliary(&self) -> bool
Returns true
if self
is of variant Auxiliary
.
sourceimpl ObjectClassType
impl ObjectClassType
sourcepub fn as_abstract_mut(&mut self) -> Option<()>
pub fn as_abstract_mut(&mut self) -> Option<()>
Optionally returns references to the inner fields if this is a ObjectClassType::Abstract
, otherwise None
sourcepub fn as_abstract(&self) -> Option<()>
pub fn as_abstract(&self) -> Option<()>
Optionally returns references to the inner fields if this is a ObjectClassType::Abstract
, otherwise None
sourcepub fn as_structural_mut(&mut self) -> Option<()>
pub fn as_structural_mut(&mut self) -> Option<()>
Optionally returns references to the inner fields if this is a ObjectClassType::Structural
, otherwise None
sourcepub fn as_structural(&self) -> Option<()>
pub fn as_structural(&self) -> Option<()>
Optionally returns references to the inner fields if this is a ObjectClassType::Structural
, otherwise None
sourcepub fn as_auxiliary_mut(&mut self) -> Option<()>
pub fn as_auxiliary_mut(&mut self) -> Option<()>
Optionally returns references to the inner fields if this is a ObjectClassType::Auxiliary
, otherwise None
sourcepub fn as_auxiliary(&self) -> Option<()>
pub fn as_auxiliary(&self) -> Option<()>
Optionally returns references to the inner fields if this is a ObjectClassType::Auxiliary
, otherwise None
Trait Implementations
sourceimpl Clone for ObjectClassType
impl Clone for ObjectClassType
sourcefn clone(&self) -> ObjectClassType
fn clone(&self) -> ObjectClassType
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for ObjectClassType
impl Debug for ObjectClassType
sourceimpl<'de> Deserialize<'de> for ObjectClassType
impl<'de> Deserialize<'de> for ObjectClassType
sourcefn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
sourceimpl Hash for ObjectClassType
impl Hash for ObjectClassType
sourceimpl PartialEq<ObjectClassType> for ObjectClassType
impl PartialEq<ObjectClassType> for ObjectClassType
sourceimpl Serialize for ObjectClassType
impl Serialize for ObjectClassType
impl Eq for ObjectClassType
impl StructuralEq for ObjectClassType
impl StructuralPartialEq for ObjectClassType
Auto Trait Implementations
impl RefUnwindSafe for ObjectClassType
impl Send for ObjectClassType
impl Sync for ObjectClassType
impl Unpin for ObjectClassType
impl UnwindSafe for ObjectClassType
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> Instrument for T
impl<T> Instrument for T
sourcefn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
sourcefn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more
sourceimpl<T> WithSubscriber for T
impl<T> WithSubscriber for T
sourcefn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self> where
S: Into<Dispatch>,
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
sourcefn with_current_subscriber(self) -> WithDispatch<Self>
fn with_current_subscriber(self) -> WithDispatch<Self>
Attaches the current default Subscriber
to this type, returning a
WithDispatch
wrapper. Read more