pub struct SubuserPost {
pub email: String,
pub authorization_token: Option<String>,
pub credit_allocation: Option<Value>,
pub user_id: f64,
pub username: String,
pub signup_session_token: Option<String>,
}Fields§
§email: StringThe email address for this subuser.
credit_allocation: Option<Value>§user_id: f64The user ID for this subuser.
username: StringThe username of the subuser.
signup_session_token: Option<String>Trait Implementations§
Source§impl Debug for SubuserPost
impl Debug for SubuserPost
Source§impl<'de> Deserialize<'de> for SubuserPost
impl<'de> Deserialize<'de> for SubuserPost
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 Display for SubuserPost
impl Display for SubuserPost
Auto Trait Implementations§
impl Freeze for SubuserPost
impl RefUnwindSafe for SubuserPost
impl Send for SubuserPost
impl Sync for SubuserPost
impl Unpin for SubuserPost
impl UnsafeUnpin for SubuserPost
impl UnwindSafe for SubuserPost
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