Struct gmp_mpfr_sys::mpc::mpcb_t
source · #[repr(C)]pub struct mpcb_t {
pub c: mpc_t,
pub r: mpcr_t,
}
Expand description
Experimental struct.
See: mpcb_t
§Future compatibility
The fields listed here are considered internal details. These internals may
change in new minor releases of this crate, though they will be kept unchanged
for patch releases. Any code that makes use of these internals should list the
dependency as version = "~1.5"
inside Cargo.toml, not version = "1.5"
.
Fields§
§c: mpc_t
Internal implementation detail: center.
r: mpcr_t
Internal implementation detail: radius.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for mpcb_t
impl RefUnwindSafe for mpcb_t
impl !Send for mpcb_t
impl !Sync for mpcb_t
impl Unpin for mpcb_t
impl UnwindSafe for mpcb_t
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