pub enum ProfileTrust {
Always,
Never,
}Expand description
Per-profile proxy-token preference for passive reads of a remote profile’s content. Absent (NULL) means ask the user at the time of access.
Variants§
Always
Always authenticate via proxy token when accessing this profile.
Never
Never authenticate; always access anonymously.
Trait Implementations§
Source§impl Clone for ProfileTrust
impl Clone for ProfileTrust
Source§fn clone(&self) -> ProfileTrust
fn clone(&self) -> ProfileTrust
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 ProfileTrust
impl Debug for ProfileTrust
Source§impl<'de> Deserialize<'de> for ProfileTrust
impl<'de> Deserialize<'de> for ProfileTrust
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 ProfileTrust
impl PartialEq for ProfileTrust
Source§fn eq(&self, other: &ProfileTrust) -> bool
fn eq(&self, other: &ProfileTrust) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ProfileTrust
impl Serialize for ProfileTrust
impl Copy for ProfileTrust
impl Eq for ProfileTrust
impl StructuralPartialEq for ProfileTrust
Auto Trait Implementations§
impl Freeze for ProfileTrust
impl RefUnwindSafe for ProfileTrust
impl Send for ProfileTrust
impl Sync for ProfileTrust
impl Unpin for ProfileTrust
impl UnsafeUnpin for ProfileTrust
impl UnwindSafe for ProfileTrust
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