pub struct ProfileInfo {
pub identifier: String,
pub display_name: String,
pub description: Option<String>,
pub is_active: bool,
pub removal_disallowed: Option<bool>,
pub status: Option<String>,
pub uuid: Option<String>,
pub version: Option<u64>,
}Fields§
§identifier: String§display_name: String§description: Option<String>§is_active: bool§removal_disallowed: Option<bool>§status: Option<String>§uuid: Option<String>§version: Option<u64>Trait Implementations§
Source§impl Clone for ProfileInfo
impl Clone for ProfileInfo
Source§fn clone(&self) -> ProfileInfo
fn clone(&self) -> ProfileInfo
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ProfileInfo
impl Debug for ProfileInfo
Source§impl PartialEq for ProfileInfo
impl PartialEq for ProfileInfo
Source§fn eq(&self, other: &ProfileInfo) -> bool
fn eq(&self, other: &ProfileInfo) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for ProfileInfo
impl Serialize for ProfileInfo
impl Eq for ProfileInfo
impl StructuralPartialEq for ProfileInfo
Auto Trait Implementations§
impl Freeze for ProfileInfo
impl RefUnwindSafe for ProfileInfo
impl Send for ProfileInfo
impl Sync for ProfileInfo
impl Unpin for ProfileInfo
impl UnsafeUnpin for ProfileInfo
impl UnwindSafe for ProfileInfo
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§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.