pub struct ZBDUserData {
pub id: String,
pub email: String,
pub gamertag: String,
pub image: Option<String>,
pub is_verified: bool,
pub lightning_address: String,
pub public_bio: String,
pub public_static_charge: String,
}
Fields§
§id: String
§email: String
§gamertag: String
§image: Option<String>
§is_verified: bool
§lightning_address: String
§public_bio: String
§public_static_charge: String
Trait Implementations§
Source§impl Debug for ZBDUserData
impl Debug for ZBDUserData
Source§impl<'de> Deserialize<'de> for ZBDUserData
impl<'de> Deserialize<'de> for ZBDUserData
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
Auto Trait Implementations§
impl Freeze for ZBDUserData
impl RefUnwindSafe for ZBDUserData
impl Send for ZBDUserData
impl Sync for ZBDUserData
impl Unpin for ZBDUserData
impl UnwindSafe for ZBDUserData
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