pub struct OctectParams {
pub curve: String,
pub x: String,
pub d: Option<String>,
}Expand description
Octet Key Pair parameters (Ed25519, X25519)
Fields§
§curve: String§x: String§d: Option<String>Trait Implementations§
Source§impl Clone for OctectParams
impl Clone for OctectParams
Source§fn clone(&self) -> OctectParams
fn clone(&self) -> OctectParams
Returns a duplicate 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 OctectParams
impl Debug for OctectParams
Source§impl<'de> Deserialize<'de> for OctectParams
impl<'de> Deserialize<'de> for OctectParams
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
Source§impl Drop for OctectParams
impl Drop for OctectParams
Source§impl PartialEq for OctectParams
impl PartialEq for OctectParams
Source§impl Serialize for OctectParams
impl Serialize for OctectParams
Source§impl Zeroize for OctectParams
impl Zeroize for OctectParams
impl StructuralPartialEq for OctectParams
Auto Trait Implementations§
impl Freeze for OctectParams
impl RefUnwindSafe for OctectParams
impl Send for OctectParams
impl Sync for OctectParams
impl Unpin for OctectParams
impl UnsafeUnpin for OctectParams
impl UnwindSafe for OctectParams
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