pub struct IssueSummary {Show 15 fields
pub id: String,
pub identifier: String,
pub title: String,
pub url: String,
pub team: TeamRef,
pub state: Option<WorkflowStateRef>,
pub assignee: Option<UserRef>,
pub creator: Option<UserRef>,
pub project: Option<ProjectRef>,
pub priority: i32,
pub priority_label: String,
pub label_ids: Vec<String>,
pub due_date: Option<String>,
pub created_at: String,
pub updated_at: String,
}Fields§
§id: String§identifier: String§title: String§url: String§team: TeamRef§state: Option<WorkflowStateRef>§assignee: Option<UserRef>§creator: Option<UserRef>§project: Option<ProjectRef>§priority: i32§priority_label: String§label_ids: Vec<String>§due_date: Option<String>§created_at: String§updated_at: StringTrait Implementations§
Source§impl Clone for IssueSummary
impl Clone for IssueSummary
Source§fn clone(&self) -> IssueSummary
fn clone(&self) -> IssueSummary
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 IssueSummary
impl Debug for IssueSummary
Source§impl<'de> Deserialize<'de> for IssueSummary
impl<'de> Deserialize<'de> for IssueSummary
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 From<Issue> for IssueSummary
impl From<Issue> for IssueSummary
Source§impl From<IssueSearchResult> for IssueSummary
impl From<IssueSearchResult> for IssueSummary
Source§fn from(i: IssueSearchResult) -> Self
fn from(i: IssueSearchResult) -> Self
Converts to this type from the input type.
Source§impl JsonSchema for IssueSummary
impl JsonSchema for IssueSummary
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn inline_schema() -> bool
fn inline_schema() -> bool
Whether JSON Schemas generated for this type should be included directly in parent schemas,
rather than being re-used where possible using the
$ref keyword. Read moreAuto Trait Implementations§
impl Freeze for IssueSummary
impl RefUnwindSafe for IssueSummary
impl Send for IssueSummary
impl Sync for IssueSummary
impl Unpin for IssueSummary
impl UnsafeUnpin for IssueSummary
impl UnwindSafe for IssueSummary
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