pub struct AddressProofInputs {
pub address: String,
pub merkle_context: MerkleContextV2,
pub root: String,
pub root_index: u16,
}Expand description
AddressProofInputs
JSON schema
{
"type": "object",
"required": [
"address",
"merkleContext",
"root",
"rootIndex"
],
"properties": {
"address": {
"type": "string"
},
"merkleContext": {
"$ref": "#/components/schemas/MerkleContextV2"
},
"root": {
"type": "string"
},
"rootIndex": {
"type": "integer",
"format": "uint16",
"minimum": 0.0
}
}
}Fields§
§address: String§merkle_context: MerkleContextV2§root: String§root_index: u16Implementations§
Source§impl AddressProofInputs
impl AddressProofInputs
pub fn builder() -> AddressProofInputs
Trait Implementations§
Source§impl Clone for AddressProofInputs
impl Clone for AddressProofInputs
Source§fn clone(&self) -> AddressProofInputs
fn clone(&self) -> AddressProofInputs
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 AddressProofInputs
impl Debug for AddressProofInputs
Source§impl<'de> Deserialize<'de> for AddressProofInputs
impl<'de> Deserialize<'de> for AddressProofInputs
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<AddressProofInputs> for AddressProofInputs
impl From<AddressProofInputs> for AddressProofInputs
Source§fn from(value: AddressProofInputs) -> Self
fn from(value: AddressProofInputs) -> Self
Converts to this type from the input type.
Source§impl Serialize for AddressProofInputs
impl Serialize for AddressProofInputs
Source§impl TryFrom<AddressProofInputs> for AddressProofInputs
impl TryFrom<AddressProofInputs> for AddressProofInputs
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(value: AddressProofInputs) -> Result<Self, ConversionError>
fn try_from(value: AddressProofInputs) -> Result<Self, ConversionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for AddressProofInputs
impl RefUnwindSafe for AddressProofInputs
impl Send for AddressProofInputs
impl Sync for AddressProofInputs
impl Unpin for AddressProofInputs
impl UnsafeUnpin for AddressProofInputs
impl UnwindSafe for AddressProofInputs
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