Struct atrium_api::app::bsky::actor::defs::FeedViewPref
source · pub struct FeedViewPref {
pub feed: String,
pub hide_quote_posts: Option<bool>,
pub hide_replies: Option<bool>,
pub hide_replies_by_like_count: Option<i64>,
pub hide_replies_by_unfollowed: Option<bool>,
pub hide_reposts: Option<bool>,
}Fields§
§feed: StringThe URI of the feed, or an identifier which describes the feed.
hide_quote_posts: Option<bool>Hide quote posts in the feed.
hide_replies: Option<bool>Hide replies in the feed.
hide_replies_by_like_count: Option<i64>Hide replies in the feed if they do not have this number of likes.
hide_replies_by_unfollowed: Option<bool>Hide replies in the feed if they are not by followed users.
hide_reposts: Option<bool>Hide reposts in the feed.
Trait Implementations§
source§impl Clone for FeedViewPref
impl Clone for FeedViewPref
source§fn clone(&self) -> FeedViewPref
fn clone(&self) -> FeedViewPref
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 FeedViewPref
impl Debug for FeedViewPref
source§impl<'de> Deserialize<'de> for FeedViewPref
impl<'de> Deserialize<'de> for FeedViewPref
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 FeedViewPref
impl PartialEq for FeedViewPref
source§fn eq(&self, other: &FeedViewPref) -> bool
fn eq(&self, other: &FeedViewPref) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl Serialize for FeedViewPref
impl Serialize for FeedViewPref
impl Eq for FeedViewPref
impl StructuralPartialEq for FeedViewPref
Auto Trait Implementations§
impl RefUnwindSafe for FeedViewPref
impl Send for FeedViewPref
impl Sync for FeedViewPref
impl Unpin for FeedViewPref
impl UnwindSafe for FeedViewPref
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