pub struct TempoFeePayerSignature {
pub r: Hex,
pub s: Hex,
pub y_parity: TempoFeePayerSignatureYParity,
}Expand description
A fee payer signature for sponsored Tempo transactions (secp256k1 only).
JSON schema
{
"title": "TempoFeePayerSignature",
"description": "A fee payer signature for sponsored Tempo transactions
(secp256k1 only).",
"type": "object",
"required": [
"r",
"s",
"y_parity"
],
"properties": {
"r": {
"$ref": "#/components/schemas/Hex"
},
"s": {
"$ref": "#/components/schemas/Hex"
},
"y_parity": {
"oneOf": [
{
"type": "number",
"enum": [
0.0
]
},
{
"type": "number",
"enum": [
1.0
]
}
]
}
},
"x-stainless-model": "wallets.tempo_fee_payer_signature"
}Fields§
§r: Hex§s: Hex§y_parity: TempoFeePayerSignatureYParityTrait Implementations§
Source§impl Clone for TempoFeePayerSignature
impl Clone for TempoFeePayerSignature
Source§fn clone(&self) -> TempoFeePayerSignature
fn clone(&self) -> TempoFeePayerSignature
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 TempoFeePayerSignature
impl Debug for TempoFeePayerSignature
Source§impl<'de> Deserialize<'de> for TempoFeePayerSignature
impl<'de> Deserialize<'de> for TempoFeePayerSignature
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<&TempoFeePayerSignature> for TempoFeePayerSignature
impl From<&TempoFeePayerSignature> for TempoFeePayerSignature
Source§fn from(value: &TempoFeePayerSignature) -> Self
fn from(value: &TempoFeePayerSignature) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for TempoFeePayerSignature
impl RefUnwindSafe for TempoFeePayerSignature
impl Send for TempoFeePayerSignature
impl Sync for TempoFeePayerSignature
impl Unpin for TempoFeePayerSignature
impl UnsafeUnpin for TempoFeePayerSignature
impl UnwindSafe for TempoFeePayerSignature
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