pub struct ProfileSettings {
pub friends_list_visibility: Option<String>,
pub kind: Option<String>,
pub profile_visible: Option<bool>,
}Expand description
Profile settings
This type is not used in any activity, and only used as part of another schema.
Fields§
§friends_list_visibility: Option<String>no description provided
kind: Option<String>Uniquely identifies the type of this resource. Value is always the fixed string games#profileSettings.
profile_visible: Option<bool>Whether the player’s profile is visible to the currently signed in player.
Trait Implementations§
Source§impl Clone for ProfileSettings
impl Clone for ProfileSettings
Source§fn clone(&self) -> ProfileSettings
fn clone(&self) -> ProfileSettings
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 ProfileSettings
impl Debug for ProfileSettings
Source§impl Default for ProfileSettings
impl Default for ProfileSettings
Source§fn default() -> ProfileSettings
fn default() -> ProfileSettings
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ProfileSettings
impl<'de> Deserialize<'de> for ProfileSettings
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 Serialize for ProfileSettings
impl Serialize for ProfileSettings
impl Part for ProfileSettings
Auto Trait Implementations§
impl Freeze for ProfileSettings
impl RefUnwindSafe for ProfileSettings
impl Send for ProfileSettings
impl Sync for ProfileSettings
impl Unpin for ProfileSettings
impl UnwindSafe for ProfileSettings
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