pub struct User {
pub name: Option<String>,
pub external_id: Option<String>,
pub alias: Option<String>,
pub verified: bool,
pub signature: Option<String>,
pub role: Option<String>,
pub photo_url: Option<String>,
}Expand description
A User as returned by the Bunny.net API.
Fields
name: Option<String>The user’s name.
external_id: Option<String>TODO: Not sure what this is yet
alias: Option<String>TODO: Not sure what this is yet
verified: boolWhether the user has verified their email address.
signature: Option<String>TODO: Not sure what this is yet
role: Option<String>TODO: Not sure what this is yet
photo_url: Option<String>URL to the user’s profile photo.
Trait Implementations
sourceimpl<'de> Deserialize<'de> for User
impl<'de> Deserialize<'de> for User
sourcefn 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 RefUnwindSafe for User
impl Send for User
impl Sync for User
impl Unpin for User
impl UnwindSafe for User
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more