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