pub struct FieldConfig {
pub nc: NCTYPE,
pub gluon: R,
pub quarks: Vec<(NFTYPE, R)>,
/* private fields */
}Expand description
Field configuration for gluons and quarks.
Fields§
§nc: NCTYPENumber of colors.
gluon: RGluon mass parameter.
quarks: Vec<(NFTYPE, R)>Quark mass configuration: number of quarks (quarks[i].0) with a given
mass parameter (quarks[i].1).
Implementations§
Trait Implementations§
Source§impl Clone for FieldConfig
impl Clone for FieldConfig
Source§fn clone(&self) -> FieldConfig
fn clone(&self) -> FieldConfig
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 FieldConfig
impl RefUnwindSafe for FieldConfig
impl Send for FieldConfig
impl Sync for FieldConfig
impl Unpin for FieldConfig
impl UnwindSafe for FieldConfig
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