pub struct BooleanAlgebra {
pub name: String,
pub is_atomic: bool,
pub is_complete: bool,
pub cardinality_description: String,
}Expand description
Boolean algebra structure.
Fields§
§name: String§is_atomic: bool§is_complete: bool§cardinality_description: StringImplementations§
Trait Implementations§
Source§impl Clone for BooleanAlgebra
impl Clone for BooleanAlgebra
Source§fn clone(&self) -> BooleanAlgebra
fn clone(&self) -> BooleanAlgebra
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 moreAuto Trait Implementations§
impl Freeze for BooleanAlgebra
impl RefUnwindSafe for BooleanAlgebra
impl Send for BooleanAlgebra
impl Sync for BooleanAlgebra
impl Unpin for BooleanAlgebra
impl UnsafeUnpin for BooleanAlgebra
impl UnwindSafe for BooleanAlgebra
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