pub struct UserPickerUser {
pub account_id: Option<String>,
pub name: Option<String>,
pub key: Option<String>,
pub html: Option<String>,
pub display_name: Option<String>,
pub avatar_url: Option<String>,
}
Expand description
UserPickerUser : A user found in a search.
Fields§
§account_id: Option<String>
The account ID of the user, which uniquely identifies the user across all Atlassian products. For example, 5b10ac8d82e05b22cc7d4ef5.
name: Option<String>
This property is no longer available and will be removed from the documentation soon. See the deprecation notice for details.
key: Option<String>
This property is no longer available and will be removed from the documentation soon. See the deprecation notice for details.
html: Option<String>
The display name, email address, and key of the user with the matched query string highlighted with the HTML bold tag.
display_name: Option<String>
The display name of the user. Depending on the user’s privacy setting, this may be returned as null.
avatar_url: Option<String>
The avatar URL of the user.
Implementations§
Source§impl UserPickerUser
impl UserPickerUser
Sourcepub fn new() -> UserPickerUser
pub fn new() -> UserPickerUser
A user found in a search.
Trait Implementations§
Source§impl Clone for UserPickerUser
impl Clone for UserPickerUser
Source§fn clone(&self) -> UserPickerUser
fn clone(&self) -> UserPickerUser
Returns a duplicate of the value. Read more
1.0.0 · 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 UserPickerUser
impl Debug for UserPickerUser
Source§impl Default for UserPickerUser
impl Default for UserPickerUser
Source§fn default() -> UserPickerUser
fn default() -> UserPickerUser
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UserPickerUser
impl<'de> Deserialize<'de> for UserPickerUser
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 UserPickerUser
impl PartialEq for UserPickerUser
Source§impl Serialize for UserPickerUser
impl Serialize for UserPickerUser
impl StructuralPartialEq for UserPickerUser
Auto Trait Implementations§
impl Freeze for UserPickerUser
impl RefUnwindSafe for UserPickerUser
impl Send for UserPickerUser
impl Sync for UserPickerUser
impl Unpin for UserPickerUser
impl UnwindSafe for UserPickerUser
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