pub struct KeyringEntry {
pub name: String,
pub service: String,
}Expand description
The keyring entry structure.
Represents an entry inside a keyring. An entry is mostly composed of a keyring entry name and a keyring service name.
Fields§
§name: String§service: StringImplementations§
Source§impl KeyringEntry
impl KeyringEntry
Trait Implementations§
Source§impl Clone for KeyringEntry
impl Clone for KeyringEntry
Source§fn clone(&self) -> KeyringEntry
fn clone(&self) -> KeyringEntry
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 KeyringEntry
impl Debug for KeyringEntry
Source§impl<'de> Deserialize<'de> for KeyringEntry
Available on crate feature serde only.
impl<'de> Deserialize<'de> for KeyringEntry
Available on crate feature
serde only.Source§fn deserialize<D: Deserializer<'de>>(
deserializer: D,
) -> Result<KeyringEntry, D::Error>
fn deserialize<D: Deserializer<'de>>( deserializer: D, ) -> Result<KeyringEntry, D::Error>
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for KeyringEntry
impl PartialEq for KeyringEntry
Source§impl Serialize for KeyringEntry
Available on crate feature serde only.
impl Serialize for KeyringEntry
Available on crate feature
serde only.Source§impl TryFrom<KeyringEntry> for Entry
impl TryFrom<KeyringEntry> for Entry
impl Eq for KeyringEntry
impl StructuralPartialEq for KeyringEntry
Auto Trait Implementations§
impl Freeze for KeyringEntry
impl RefUnwindSafe for KeyringEntry
impl Send for KeyringEntry
impl Sync for KeyringEntry
impl Unpin for KeyringEntry
impl UnwindSafe for KeyringEntry
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