pub struct CredentialStoreSearchElement {
pub username: SearchStoreElementType,
pub secret: SearchStoreElementType,
pub authtype: SearchStoreElementType,
pub kind: SearchStoreElementType,
pub protocol: SearchStoreElementType,
pub host: SearchStoreElementType,
pub title: SearchStoreElementType,
pub description: SearchStoreElementType,
pub path: SearchStoreElementType,
pub service: SearchStoreElementType,
pub extra: BTreeMap<String, SearchStoreElementType>,
pub id: SearchStoreElementType,
}
Fields§
§username: SearchStoreElementType
§secret: SearchStoreElementType
§authtype: SearchStoreElementType
§kind: SearchStoreElementType
§protocol: SearchStoreElementType
§host: SearchStoreElementType
§title: SearchStoreElementType
§description: SearchStoreElementType
§path: SearchStoreElementType
§service: SearchStoreElementType
§extra: BTreeMap<String, SearchStoreElementType>
§id: SearchStoreElementType
Trait Implementations§
Source§impl Clone for CredentialStoreSearchElement
impl Clone for CredentialStoreSearchElement
Source§fn clone(&self) -> CredentialStoreSearchElement
fn clone(&self) -> CredentialStoreSearchElement
Returns a copy 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 CredentialStoreSearchElement
impl Debug for CredentialStoreSearchElement
Source§impl<'de> Deserialize<'de> for CredentialStoreSearchElement
impl<'de> Deserialize<'de> for CredentialStoreSearchElement
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 Ord for CredentialStoreSearchElement
impl Ord for CredentialStoreSearchElement
Source§fn cmp(&self, other: &CredentialStoreSearchElement) -> Ordering
fn cmp(&self, other: &CredentialStoreSearchElement) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for CredentialStoreSearchElement
impl PartialEq for CredentialStoreSearchElement
Source§fn eq(&self, other: &CredentialStoreSearchElement) -> bool
fn eq(&self, other: &CredentialStoreSearchElement) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.Source§impl PartialOrd for CredentialStoreSearchElement
impl PartialOrd for CredentialStoreSearchElement
impl Eq for CredentialStoreSearchElement
impl StructuralPartialEq for CredentialStoreSearchElement
Auto Trait Implementations§
impl Freeze for CredentialStoreSearchElement
impl RefUnwindSafe for CredentialStoreSearchElement
impl Send for CredentialStoreSearchElement
impl Sync for CredentialStoreSearchElement
impl Unpin for CredentialStoreSearchElement
impl UnwindSafe for CredentialStoreSearchElement
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