pub struct Class {
pub name: String,
pub alias: String,
pub conditions: Vec<Condition>,
}
Expand description
A class is a way to group facts and usually corresponds to a struct in your program data
Fields§
§name: String
§alias: String
§conditions: Vec<Condition>
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Class
impl RefUnwindSafe for Class
impl Send for Class
impl Sync for Class
impl Unpin for Class
impl UnwindSafe for Class
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