pub struct HistoryMetadataParticipant {
pub id: Option<String>,
pub display_name: Option<String>,
pub display_name_key: Option<String>,
pub type: Option<String>,
pub avatar_url: Option<String>,
pub url: Option<String>,
}
Expand description
HistoryMetadataParticipant : Details of user or system associated with a issue history metadata item.
Fields§
§id: Option<String>
The ID of the user or system associated with a history record.
display_name: Option<String>
The display name of the user or system associated with a history record.
display_name_key: Option<String>
The key of the display name of the user or system associated with a history record.
type: Option<String>
The type of the user or system associated with a history record.
avatar_url: Option<String>
The URL to an avatar for the user or system associated with a history record.
url: Option<String>
The URL of the user or system associated with a history record.
Implementations§
Source§impl HistoryMetadataParticipant
impl HistoryMetadataParticipant
Sourcepub fn new() -> HistoryMetadataParticipant
pub fn new() -> HistoryMetadataParticipant
Details of user or system associated with a issue history metadata item.
Trait Implementations§
Source§impl Clone for HistoryMetadataParticipant
impl Clone for HistoryMetadataParticipant
Source§fn clone(&self) -> HistoryMetadataParticipant
fn clone(&self) -> HistoryMetadataParticipant
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 HistoryMetadataParticipant
impl Debug for HistoryMetadataParticipant
Source§impl Default for HistoryMetadataParticipant
impl Default for HistoryMetadataParticipant
Source§fn default() -> HistoryMetadataParticipant
fn default() -> HistoryMetadataParticipant
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for HistoryMetadataParticipant
impl<'de> Deserialize<'de> for HistoryMetadataParticipant
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 HistoryMetadataParticipant
Auto Trait Implementations§
impl Freeze for HistoryMetadataParticipant
impl RefUnwindSafe for HistoryMetadataParticipant
impl Send for HistoryMetadataParticipant
impl Sync for HistoryMetadataParticipant
impl Unpin for HistoryMetadataParticipant
impl UnwindSafe for HistoryMetadataParticipant
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