pub struct CtfUserProfile {
pub id: u64,
pub name: String,
pub full_name: Option<String>,
pub email: Option<String>,
pub timezone: Option<String>,
pub has_any_team: bool,
pub avatar: Option<String>,
}Fields§
§id: u64§name: String§full_name: Option<String>§email: Option<String>§timezone: Option<String>§has_any_team: bool§avatar: Option<String>Trait Implementations§
Source§impl Debug for CtfUserProfile
impl Debug for CtfUserProfile
Source§impl<'de> Deserialize<'de> for CtfUserProfile
impl<'de> Deserialize<'de> for CtfUserProfile
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 CtfUserProfile
impl Serialize for CtfUserProfile
Auto Trait Implementations§
impl Freeze for CtfUserProfile
impl RefUnwindSafe for CtfUserProfile
impl Send for CtfUserProfile
impl Sync for CtfUserProfile
impl Unpin for CtfUserProfile
impl UnsafeUnpin for CtfUserProfile
impl UnwindSafe for CtfUserProfile
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