pub struct StoryPrivacySettingsContacts {
pub except_user_ids: Vec<i64>,
}
Expand description
The story can be viewed by all contacts except chosen users
Fields§
§except_user_ids: Vec<i64>
User identifiers of the contacts that can’t see the story; always unknown and empty for non-owned stories
Trait Implementations§
Source§impl Clone for StoryPrivacySettingsContacts
impl Clone for StoryPrivacySettingsContacts
Source§fn clone(&self) -> StoryPrivacySettingsContacts
fn clone(&self) -> StoryPrivacySettingsContacts
Returns a duplicate 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 StoryPrivacySettingsContacts
impl Debug for StoryPrivacySettingsContacts
Source§impl Default for StoryPrivacySettingsContacts
impl Default for StoryPrivacySettingsContacts
Source§fn default() -> StoryPrivacySettingsContacts
fn default() -> StoryPrivacySettingsContacts
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for StoryPrivacySettingsContacts
impl<'de> Deserialize<'de> for StoryPrivacySettingsContacts
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 StoryPrivacySettingsContacts
impl PartialEq for StoryPrivacySettingsContacts
Source§fn eq(&self, other: &StoryPrivacySettingsContacts) -> bool
fn eq(&self, other: &StoryPrivacySettingsContacts) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for StoryPrivacySettingsContacts
Auto Trait Implementations§
impl Freeze for StoryPrivacySettingsContacts
impl RefUnwindSafe for StoryPrivacySettingsContacts
impl Send for StoryPrivacySettingsContacts
impl Sync for StoryPrivacySettingsContacts
impl Unpin for StoryPrivacySettingsContacts
impl UnwindSafe for StoryPrivacySettingsContacts
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