pub enum AudienceType {
Personal,
Community,
}Expand description
Audience filter axis: classify actions by the type of the effective wall
owner (coalesce(audience, issuer_tag) joined to profiles.type).
Personal matches pa.type='P' (with NULL→Personal fallback for unknown
remote profiles). Community matches pa.type='C'.
Combines with audience (specific community) as AND.
Variants§
Trait Implementations§
Source§impl Clone for AudienceType
impl Clone for AudienceType
Source§fn clone(&self) -> AudienceType
fn clone(&self) -> AudienceType
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 AudienceType
impl Debug for AudienceType
Source§impl<'de> Deserialize<'de> for AudienceType
impl<'de> Deserialize<'de> for AudienceType
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 Copy for AudienceType
Auto Trait Implementations§
impl Freeze for AudienceType
impl RefUnwindSafe for AudienceType
impl Send for AudienceType
impl Sync for AudienceType
impl Unpin for AudienceType
impl UnsafeUnpin for AudienceType
impl UnwindSafe for AudienceType
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