pub struct GasKeyInfoView {
pub gas_key: GasKeyView,
pub public_key: PublicKey,
}Expand description
GasKeyInfoView
JSON schema
{
"type": "object",
"required": [
"gas_key",
"public_key"
],
"properties": {
"gas_key": {
"$ref": "#/components/schemas/GasKeyView"
},
"public_key": {
"$ref": "#/components/schemas/PublicKey"
}
}
}Fields§
§gas_key: GasKeyView§public_key: PublicKeyTrait Implementations§
Source§impl Clone for GasKeyInfoView
impl Clone for GasKeyInfoView
Source§fn clone(&self) -> GasKeyInfoView
fn clone(&self) -> GasKeyInfoView
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 GasKeyInfoView
impl Debug for GasKeyInfoView
Source§impl<'de> Deserialize<'de> for GasKeyInfoView
impl<'de> Deserialize<'de> for GasKeyInfoView
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<&GasKeyInfoView> for GasKeyInfoView
impl From<&GasKeyInfoView> for GasKeyInfoView
Source§fn from(value: &GasKeyInfoView) -> Self
fn from(value: &GasKeyInfoView) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for GasKeyInfoView
impl RefUnwindSafe for GasKeyInfoView
impl Send for GasKeyInfoView
impl Sync for GasKeyInfoView
impl Unpin for GasKeyInfoView
impl UnwindSafe for GasKeyInfoView
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