#[repr(C)]pub struct QuESTEnv {
pub rank: c_int,
pub numRanks: c_int,
pub seeds: *mut c_ulong,
pub numSeeds: c_int,
}Expand description
Information about the environment the program is running in. In practice, this holds info about MPI ranks and helps to hide MPI initialization code
@ingroup type @author Ania Brown @author Tyson Jones (seeding)
Fields
rank: c_intnumRanks: c_intseeds: *mut c_ulongnumSeeds: c_intTrait Implementations
Auto Trait Implementations
impl RefUnwindSafe for QuESTEnv
impl !Send for QuESTEnv
impl !Sync for QuESTEnv
impl Unpin for QuESTEnv
impl UnwindSafe for QuESTEnv
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more