pub struct DomainFactList {
pub fact_types: Vec<FactTypeDefinition>,
}Expand description
DomainFactList : A list of defined fact types in the domain
Fields§
§fact_types: Vec<FactTypeDefinition>Implementations§
Source§impl DomainFactList
impl DomainFactList
Sourcepub fn new(fact_types: Vec<FactTypeDefinition>) -> DomainFactList
pub fn new(fact_types: Vec<FactTypeDefinition>) -> DomainFactList
A list of defined fact types in the domain
Trait Implementations§
Source§impl Clone for DomainFactList
impl Clone for DomainFactList
Source§fn clone(&self) -> DomainFactList
fn clone(&self) -> DomainFactList
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 DomainFactList
impl Debug for DomainFactList
Source§impl Default for DomainFactList
impl Default for DomainFactList
Source§fn default() -> DomainFactList
fn default() -> DomainFactList
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DomainFactList
impl<'de> Deserialize<'de> for DomainFactList
Source§fn 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
Source§impl PartialEq for DomainFactList
impl PartialEq for DomainFactList
Source§fn eq(&self, other: &DomainFactList) -> bool
fn eq(&self, other: &DomainFactList) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for DomainFactList
impl Serialize for DomainFactList
impl StructuralPartialEq for DomainFactList
Auto Trait Implementations§
impl Freeze for DomainFactList
impl RefUnwindSafe for DomainFactList
impl Send for DomainFactList
impl Sync for DomainFactList
impl Unpin for DomainFactList
impl UnsafeUnpin for DomainFactList
impl UnwindSafe for DomainFactList
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