pub enum PrivacyMode {
Open,
Anonymous,
}Expand description
Per-project member-PII privacy mode (ADR-042). Stored in project.yaml
(committed, project-wide); absent means Open. Inspected via
joy project get privacy; the switch to Anonymous is an atomic
migration owned by the mode-transition command, not a bare set.
Variants§
Open
Cleartext member e-mail in project.yaml (today’s behaviour).
Anonymous
Member e-mail lives in an encrypted members.yaml; project.yaml
carries an opaque member id and an email_match verifier.
Trait Implementations§
Source§impl Clone for PrivacyMode
impl Clone for PrivacyMode
Source§fn clone(&self) -> PrivacyMode
fn clone(&self) -> PrivacyMode
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 moreimpl Copy for PrivacyMode
Source§impl Debug for PrivacyMode
impl Debug for PrivacyMode
Source§impl Default for PrivacyMode
impl Default for PrivacyMode
Source§fn default() -> PrivacyMode
fn default() -> PrivacyMode
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PrivacyMode
impl<'de> Deserialize<'de> for PrivacyMode
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 Display for PrivacyMode
impl Display for PrivacyMode
impl Eq for PrivacyMode
Source§impl PartialEq for PrivacyMode
impl PartialEq for PrivacyMode
Source§fn eq(&self, other: &PrivacyMode) -> bool
fn eq(&self, other: &PrivacyMode) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for PrivacyMode
impl Serialize for PrivacyMode
impl StructuralPartialEq for PrivacyMode
Auto Trait Implementations§
impl Freeze for PrivacyMode
impl RefUnwindSafe for PrivacyMode
impl Send for PrivacyMode
impl Sync for PrivacyMode
impl Unpin for PrivacyMode
impl UnsafeUnpin for PrivacyMode
impl UnwindSafe for PrivacyMode
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
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.