pub struct OwnerInputPublicKey {
pub public_key: P256PublicKey,
}Expand description
Owner input specifying a P-256 public key.
JSON schema
{
"title": "OwnerInputPublicKey",
"description": "Owner input specifying a P-256 public key.",
"type": "object",
"required": [
"public_key"
],
"properties": {
"public_key": {
"$ref": "#/components/schemas/P256PublicKey"
}
},
"x-stainless-model": "shared.owner_input_public_key"
}Fields§
§public_key: P256PublicKeyTrait Implementations§
Source§impl Clone for OwnerInputPublicKey
impl Clone for OwnerInputPublicKey
Source§fn clone(&self) -> OwnerInputPublicKey
fn clone(&self) -> OwnerInputPublicKey
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 OwnerInputPublicKey
impl Debug for OwnerInputPublicKey
Source§impl<'de> Deserialize<'de> for OwnerInputPublicKey
impl<'de> Deserialize<'de> for OwnerInputPublicKey
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 From<&OwnerInputPublicKey> for OwnerInputPublicKey
impl From<&OwnerInputPublicKey> for OwnerInputPublicKey
Source§fn from(value: &OwnerInputPublicKey) -> Self
fn from(value: &OwnerInputPublicKey) -> Self
Converts to this type from the input type.
Source§impl From<OwnerInputPublicKey> for OwnerInput
impl From<OwnerInputPublicKey> for OwnerInput
Source§fn from(value: OwnerInputPublicKey) -> Self
fn from(value: OwnerInputPublicKey) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for OwnerInputPublicKey
impl RefUnwindSafe for OwnerInputPublicKey
impl Send for OwnerInputPublicKey
impl Sync for OwnerInputPublicKey
impl Unpin for OwnerInputPublicKey
impl UnsafeUnpin for OwnerInputPublicKey
impl UnwindSafe for OwnerInputPublicKey
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