pub struct ActivityLogUser {
pub email: Option<String>,
pub name: Option<String>,
pub profile_image_url: Option<String>,
}Expand description
ActivityLogUser
Fields§
§email: Option<String>§name: Option<String>§profile_image_url: Option<String>Implementations§
Source§impl ActivityLogUser
impl ActivityLogUser
pub fn new() -> ActivityLogUser
Trait Implementations§
Source§impl Clone for ActivityLogUser
impl Clone for ActivityLogUser
Source§fn clone(&self) -> ActivityLogUser
fn clone(&self) -> ActivityLogUser
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 ActivityLogUser
impl Debug for ActivityLogUser
Source§impl Default for ActivityLogUser
impl Default for ActivityLogUser
Source§fn default() -> ActivityLogUser
fn default() -> ActivityLogUser
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ActivityLogUser
impl<'de> Deserialize<'de> for ActivityLogUser
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 PartialEq for ActivityLogUser
impl PartialEq for ActivityLogUser
Source§impl Serialize for ActivityLogUser
impl Serialize for ActivityLogUser
impl StructuralPartialEq for ActivityLogUser
Auto Trait Implementations§
impl Freeze for ActivityLogUser
impl RefUnwindSafe for ActivityLogUser
impl Send for ActivityLogUser
impl Sync for ActivityLogUser
impl Unpin for ActivityLogUser
impl UnsafeUnpin for ActivityLogUser
impl UnwindSafe for ActivityLogUser
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