pub struct InformationObjectClass {
pub fields: Vec<InformationObjectClassField>,
pub syntax: Option<InformationObjectSyntax>,
}
Fields§
§fields: Vec<InformationObjectClassField>
§syntax: Option<InformationObjectSyntax>
Implementations§
source§impl InformationObjectClass
impl InformationObjectClass
pub fn get_field<'a>( &'a self, path: &'a Vec<ObjectFieldIdentifier> ) -> Option<&InformationObjectClassField>
Trait Implementations§
source§impl Clone for InformationObjectClass
impl Clone for InformationObjectClass
source§fn clone(&self) -> InformationObjectClass
fn clone(&self) -> InformationObjectClass
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 InformationObjectClass
impl Debug for InformationObjectClass
source§impl From<(Vec<InformationObjectClassField>, Option<Vec<SyntaxExpression>>)> for InformationObjectClass
impl From<(Vec<InformationObjectClassField>, Option<Vec<SyntaxExpression>>)> for InformationObjectClass
source§fn from(
value: (Vec<InformationObjectClassField>, Option<Vec<SyntaxExpression>>)
) -> Self
fn from( value: (Vec<InformationObjectClassField>, Option<Vec<SyntaxExpression>>) ) -> Self
Converts to this type from the input type.
source§impl PartialEq for InformationObjectClass
impl PartialEq for InformationObjectClass
source§fn eq(&self, other: &InformationObjectClass) -> bool
fn eq(&self, other: &InformationObjectClass) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for InformationObjectClass
Auto Trait Implementations§
impl RefUnwindSafe for InformationObjectClass
impl Send for InformationObjectClass
impl Sync for InformationObjectClass
impl Unpin for InformationObjectClass
impl UnwindSafe for InformationObjectClass
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