pub struct CredentialStoreLocation {
pub protocol: Option<String>,
pub host: Option<String>,
pub port: Option<u16>,
pub path: Option<String>,
}Fields§
§protocol: Option<String>§host: Option<String>§port: Option<u16>§path: Option<String>Trait Implementations§
Source§impl Clone for CredentialStoreLocation
impl Clone for CredentialStoreLocation
Source§fn clone(&self) -> CredentialStoreLocation
fn clone(&self) -> CredentialStoreLocation
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 CredentialStoreLocation
impl Debug for CredentialStoreLocation
Source§impl<'de> Deserialize<'de> for CredentialStoreLocation
impl<'de> Deserialize<'de> for CredentialStoreLocation
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
impl Eq for CredentialStoreLocation
Source§impl Ord for CredentialStoreLocation
impl Ord for CredentialStoreLocation
Source§fn cmp(&self, other: &CredentialStoreLocation) -> Ordering
fn cmp(&self, other: &CredentialStoreLocation) -> Ordering
1.21.0 (const: unstable) · 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 CredentialStoreLocation
impl PartialEq for CredentialStoreLocation
Source§fn eq(&self, other: &CredentialStoreLocation) -> bool
fn eq(&self, other: &CredentialStoreLocation) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl PartialOrd for CredentialStoreLocation
impl PartialOrd for CredentialStoreLocation
Source§impl Serialize for CredentialStoreLocation
impl Serialize for CredentialStoreLocation
impl StructuralPartialEq for CredentialStoreLocation
Auto Trait Implementations§
impl Freeze for CredentialStoreLocation
impl RefUnwindSafe for CredentialStoreLocation
impl Send for CredentialStoreLocation
impl Sync for CredentialStoreLocation
impl Unpin for CredentialStoreLocation
impl UnsafeUnpin for CredentialStoreLocation
impl UnwindSafe for CredentialStoreLocation
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