Struct libsecp256k1_core::curve::FieldStorage
source · pub struct FieldStorage(pub [u32; 8]);
Expand description
Compact field element storage.
Tuple Fields§
§0: [u32; 8]
Implementations§
Trait Implementations§
source§impl Clone for FieldStorage
impl Clone for FieldStorage
source§fn clone(&self) -> FieldStorage
fn clone(&self) -> FieldStorage
Returns a copy 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 moresource§impl Debug for FieldStorage
impl Debug for FieldStorage
source§impl Default for FieldStorage
impl Default for FieldStorage
source§fn default() -> FieldStorage
fn default() -> FieldStorage
Returns the “default value” for a type. Read more
source§impl From<FieldStorage> for Field
impl From<FieldStorage> for Field
source§fn from(a: FieldStorage) -> Field
fn from(a: FieldStorage) -> Field
Converts to this type from the input type.
source§impl Into<FieldStorage> for Field
impl Into<FieldStorage> for Field
source§fn into(self) -> FieldStorage
fn into(self) -> FieldStorage
Converts this type into the (usually inferred) input type.
source§impl PartialEq<FieldStorage> for FieldStorage
impl PartialEq<FieldStorage> for FieldStorage
source§fn eq(&self, other: &FieldStorage) -> bool
fn eq(&self, other: &FieldStorage) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl Copy for FieldStorage
impl Eq for FieldStorage
impl StructuralEq for FieldStorage
impl StructuralPartialEq for FieldStorage
Auto Trait Implementations§
impl RefUnwindSafe for FieldStorage
impl Send for FieldStorage
impl Sync for FieldStorage
impl Unpin for FieldStorage
impl UnwindSafe for FieldStorage
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