pub struct ExplicitPrimeParams {
pub p: Vec<u8>,
pub curve: EcCurve,
pub base: Vec<u8>,
pub order: Vec<u8>,
pub cofactor: Vec<u8>,
}Fields§
§p: Vec<u8>§curve: EcCurve§base: Vec<u8>§order: Vec<u8>§cofactor: Vec<u8>Trait Implementations§
Source§impl Clone for ExplicitPrimeParams
impl Clone for ExplicitPrimeParams
Source§fn clone(&self) -> ExplicitPrimeParams
fn clone(&self) -> ExplicitPrimeParams
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 moreSource§impl Debug for ExplicitPrimeParams
impl Debug for ExplicitPrimeParams
Source§impl<'de> Deserialize<'de> for ExplicitPrimeParams
impl<'de> Deserialize<'de> for ExplicitPrimeParams
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ExplicitPrimeParams
impl RefUnwindSafe for ExplicitPrimeParams
impl Send for ExplicitPrimeParams
impl Sync for ExplicitPrimeParams
impl Unpin for ExplicitPrimeParams
impl UnsafeUnpin for ExplicitPrimeParams
impl UnwindSafe for ExplicitPrimeParams
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