pub struct FeedViewPrefData {
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>,
}Available on crate feature
namespace-appbsky only.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 FeedViewPrefData
impl Clone for FeedViewPrefData
Source§fn clone(&self) -> FeedViewPrefData
fn clone(&self) -> FeedViewPrefData
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 FeedViewPrefData
impl Debug for FeedViewPrefData
Source§impl<'de> Deserialize<'de> for FeedViewPrefData
impl<'de> Deserialize<'de> for FeedViewPrefData
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 FeedViewPrefData
impl PartialEq for FeedViewPrefData
Source§impl Serialize for FeedViewPrefData
impl Serialize for FeedViewPrefData
impl Eq for FeedViewPrefData
impl StructuralPartialEq for FeedViewPrefData
Auto Trait Implementations§
impl Freeze for FeedViewPrefData
impl RefUnwindSafe for FeedViewPrefData
impl Send for FeedViewPrefData
impl Sync for FeedViewPrefData
impl Unpin for FeedViewPrefData
impl UnwindSafe for FeedViewPrefData
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit)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.