pub struct KeyringResponse {
pub messages: Option<HashMap<String, String>>,
pub keys: Option<HashMap<String, i32>>,
pub num_nodes: Option<i32>,
}
Fields§
§messages: Option<HashMap<String, String>>
§keys: Option<HashMap<String, i32>>
§num_nodes: Option<i32>
Implementations§
Source§impl KeyringResponse
impl KeyringResponse
pub fn new() -> KeyringResponse
Trait Implementations§
Source§impl Clone for KeyringResponse
impl Clone for KeyringResponse
Source§fn clone(&self) -> KeyringResponse
fn clone(&self) -> KeyringResponse
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for KeyringResponse
impl Debug for KeyringResponse
Source§impl<'de> Deserialize<'de> for KeyringResponse
impl<'de> Deserialize<'de> for KeyringResponse
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 PartialEq for KeyringResponse
impl PartialEq for KeyringResponse
Source§impl Serialize for KeyringResponse
impl Serialize for KeyringResponse
impl StructuralPartialEq for KeyringResponse
Auto Trait Implementations§
impl Freeze for KeyringResponse
impl RefUnwindSafe for KeyringResponse
impl Send for KeyringResponse
impl Sync for KeyringResponse
impl Unpin for KeyringResponse
impl UnwindSafe for KeyringResponse
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