pub struct UserKey {
pub key: Option<String>,
pub account_id: Option<String>,
}
Expand description
UserKey : List of user account IDs.
Fields§
§key: Option<String>
This property is no longer available and will be removed from the documentation soon. See the deprecation notice for details.
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§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for UserKey
impl<'de> Deserialize<'de> for UserKey
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
impl StructuralPartialEq for UserKey
Auto Trait Implementations§
impl Freeze for UserKey
impl RefUnwindSafe for UserKey
impl Send for UserKey
impl Sync for UserKey
impl Unpin for UserKey
impl UnwindSafe for UserKey
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