pub struct EcPublic {
pub x: String,
pub y: String,
}Expand description
EC public point.
Defines the coordinates of EC’s public point.
Fields§
§x: StringPoint’s x coordinate.
y: StringPoint’s y coordinate.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for EcPublic
impl<'de> Deserialize<'de> for EcPublic
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 EcPublic
impl RefUnwindSafe for EcPublic
impl Send for EcPublic
impl Sync for EcPublic
impl Unpin for EcPublic
impl UnwindSafe for EcPublic
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