pub struct ProfiniteGroup {
pub name: String,
pub index_list: Vec<u64>,
}Expand description
A profinite group, given as an inverse limit of finite groups.
Fields§
§name: StringName of the group (e.g. “ℤ_p”, “Gal(ℚ^ab/ℚ)”).
index_list: Vec<u64>Indices of the finite quotients in the inverse system.
Implementations§
Auto Trait Implementations§
impl Freeze for ProfiniteGroup
impl RefUnwindSafe for ProfiniteGroup
impl Send for ProfiniteGroup
impl Sync for ProfiniteGroup
impl Unpin for ProfiniteGroup
impl UnsafeUnpin for ProfiniteGroup
impl UnwindSafe for ProfiniteGroup
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