pub struct CollectionSpecifier {
pub class_name: String,
pub virtual_attribute: Option<CollectionAttribute>,
}Expand description
Class collection specification with an optional attribute:
EntityClass {
<< ClassNameToCollect
attribute! << AnotherClassNameToCollect
}Fields§
§class_name: String§virtual_attribute: Option<CollectionAttribute>Trait Implementations§
Source§impl Clone for CollectionSpecifier
impl Clone for CollectionSpecifier
Source§fn clone(&self) -> CollectionSpecifier
fn clone(&self) -> CollectionSpecifier
Returns a duplicate 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 PartialEq for CollectionSpecifier
impl PartialEq for CollectionSpecifier
impl StructuralPartialEq for CollectionSpecifier
Auto Trait Implementations§
impl Freeze for CollectionSpecifier
impl RefUnwindSafe for CollectionSpecifier
impl Send for CollectionSpecifier
impl Sync for CollectionSpecifier
impl Unpin for CollectionSpecifier
impl UnwindSafe for CollectionSpecifier
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