pub enum AdelePlace {
Real,
Prime(u128),
}Expand description
A place of ℚ, for Adele::absolute_value_at. (Mirrors forms::padic::Place;
kept here so the scalar layer has no dependency on forms.)
Variants§
Trait Implementations§
Source§impl Clone for AdelePlace
impl Clone for AdelePlace
Source§fn clone(&self) -> AdelePlace
fn clone(&self) -> AdelePlace
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for AdelePlace
Source§impl Debug for AdelePlace
impl Debug for AdelePlace
impl Eq for AdelePlace
Source§impl Ord for AdelePlace
impl Ord for AdelePlace
Source§fn cmp(&self, other: &AdelePlace) -> Ordering
fn cmp(&self, other: &AdelePlace) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for AdelePlace
impl PartialEq for AdelePlace
Source§impl PartialOrd for AdelePlace
impl PartialOrd for AdelePlace
impl StructuralPartialEq for AdelePlace
Auto Trait Implementations§
impl Freeze for AdelePlace
impl RefUnwindSafe for AdelePlace
impl Send for AdelePlace
impl Sync for AdelePlace
impl Unpin for AdelePlace
impl UnsafeUnpin for AdelePlace
impl UnwindSafe for AdelePlace
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