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