pub struct SuggestedIssue {
pub id: Option<i64>,
pub key: Option<String>,
pub key_html: Option<String>,
pub img: Option<String>,
pub summary: Option<String>,
pub summary_text: Option<String>,
}
Expand description
SuggestedIssue : An issue suggested for use in the issue picker auto-completion.
Fields§
§id: Option<i64>
The ID of the issue.
key: Option<String>
The key of the issue.
key_html: Option<String>
The key of the issue in HTML format.
img: Option<String>
The URL of the issue type’s avatar.
summary: Option<String>
The phrase containing the query string in HTML format, with the string highlighted with HTML bold tags.
summary_text: Option<String>
The phrase containing the query string, as plain text.
Implementations§
Source§impl SuggestedIssue
impl SuggestedIssue
Sourcepub fn new() -> SuggestedIssue
pub fn new() -> SuggestedIssue
An issue suggested for use in the issue picker auto-completion.
Trait Implementations§
Source§impl Clone for SuggestedIssue
impl Clone for SuggestedIssue
Source§fn clone(&self) -> SuggestedIssue
fn clone(&self) -> SuggestedIssue
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 SuggestedIssue
impl Debug for SuggestedIssue
Source§impl Default for SuggestedIssue
impl Default for SuggestedIssue
Source§fn default() -> SuggestedIssue
fn default() -> SuggestedIssue
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SuggestedIssue
impl<'de> Deserialize<'de> for SuggestedIssue
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 SuggestedIssue
impl PartialEq for SuggestedIssue
Source§impl Serialize for SuggestedIssue
impl Serialize for SuggestedIssue
impl StructuralPartialEq for SuggestedIssue
Auto Trait Implementations§
impl Freeze for SuggestedIssue
impl RefUnwindSafe for SuggestedIssue
impl Send for SuggestedIssue
impl Sync for SuggestedIssue
impl Unpin for SuggestedIssue
impl UnwindSafe for SuggestedIssue
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