pub struct KeyringSetArgs {
pub service: String,
pub account: String,
pub secret: String,
}Expand description
Host-fn argument struct for the corresponding hm_keyring_set host function.
Fields§
§service: String§account: String§secret: StringTrait Implementations§
Source§impl Clone for KeyringSetArgs
impl Clone for KeyringSetArgs
Source§fn clone(&self) -> KeyringSetArgs
fn clone(&self) -> KeyringSetArgs
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 KeyringSetArgs
impl Debug for KeyringSetArgs
Source§impl<'de> Deserialize<'de> for KeyringSetArgs
impl<'de> Deserialize<'de> for KeyringSetArgs
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<KeyringSetArgs, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<KeyringSetArgs, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for KeyringSetArgs
impl PartialEq for KeyringSetArgs
Source§fn eq(&self, other: &KeyringSetArgs) -> bool
fn eq(&self, other: &KeyringSetArgs) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for KeyringSetArgs
impl Serialize for KeyringSetArgs
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl Eq for KeyringSetArgs
impl StructuralPartialEq for KeyringSetArgs
Auto Trait Implementations§
impl Freeze for KeyringSetArgs
impl RefUnwindSafe for KeyringSetArgs
impl Send for KeyringSetArgs
impl Sync for KeyringSetArgs
impl Unpin for KeyringSetArgs
impl UnsafeUnpin for KeyringSetArgs
impl UnwindSafe for KeyringSetArgs
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.