pub enum InformationObjectFields {
DefaultSyntax(Vec<InformationObjectField>),
CustomSyntax(Vec<SyntaxApplication>),
}
Variants§
DefaultSyntax(Vec<InformationObjectField>)
CustomSyntax(Vec<SyntaxApplication>)
Trait Implementations§
source§impl Clone for InformationObjectFields
impl Clone for InformationObjectFields
source§fn clone(&self) -> InformationObjectFields
fn clone(&self) -> InformationObjectFields
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 InformationObjectFields
impl Debug for InformationObjectFields
source§impl From<InformationObjectFields> for ObjectSetValue
impl From<InformationObjectFields> for ObjectSetValue
source§fn from(value: InformationObjectFields) -> Self
fn from(value: InformationObjectFields) -> Self
Converts to this type from the input type.
source§impl PartialEq for InformationObjectFields
impl PartialEq for InformationObjectFields
source§fn eq(&self, other: &InformationObjectFields) -> bool
fn eq(&self, other: &InformationObjectFields) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for InformationObjectFields
Auto Trait Implementations§
impl RefUnwindSafe for InformationObjectFields
impl Send for InformationObjectFields
impl Sync for InformationObjectFields
impl Unpin for InformationObjectFields
impl UnwindSafe for InformationObjectFields
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