pub struct ProjectRoleUser {
pub account_id: Option<String>,
}
Expand description
ProjectRoleUser : Details of the user associated with the role.
Fields§
§account_id: Option<String>
The account ID of the user, which uniquely identifies the user across all Atlassian products. For example, 5b10ac8d82e05b22cc7d4ef5. Returns unknown if the record is deleted and corrupted, for example, as the result of a server import.
Implementations§
Source§impl ProjectRoleUser
impl ProjectRoleUser
Sourcepub fn new() -> ProjectRoleUser
pub fn new() -> ProjectRoleUser
Details of the user associated with the role.
Trait Implementations§
Source§impl Clone for ProjectRoleUser
impl Clone for ProjectRoleUser
Source§fn clone(&self) -> ProjectRoleUser
fn clone(&self) -> ProjectRoleUser
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 ProjectRoleUser
impl Debug for ProjectRoleUser
Source§impl Default for ProjectRoleUser
impl Default for ProjectRoleUser
Source§fn default() -> ProjectRoleUser
fn default() -> ProjectRoleUser
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ProjectRoleUser
impl<'de> Deserialize<'de> for ProjectRoleUser
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 ProjectRoleUser
impl PartialEq for ProjectRoleUser
Source§impl Serialize for ProjectRoleUser
impl Serialize for ProjectRoleUser
impl StructuralPartialEq for ProjectRoleUser
Auto Trait Implementations§
impl Freeze for ProjectRoleUser
impl RefUnwindSafe for ProjectRoleUser
impl Send for ProjectRoleUser
impl Sync for ProjectRoleUser
impl Unpin for ProjectRoleUser
impl UnwindSafe for ProjectRoleUser
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