pub struct TicketInfo {
pub assignee: Option<String>,
pub description: Option<String>,
pub id: Option<String>,
pub status: Option<String>,
pub update_time: Option<DateTime<Utc>>,
pub uri: Option<String>,
}Expand description
Information about the ticket, if any, that is being used to track the resolution of the issue that is identified by this finding.
This type is not used in any activity, and only used as part of another schema.
Fields§
§assignee: Option<String>The assignee of the ticket in the ticket system.
description: Option<String>The description of the ticket in the ticket system.
id: Option<String>The identifier of the ticket in the ticket system.
status: Option<String>The latest status of the ticket, as reported by the ticket system.
update_time: Option<DateTime<Utc>>The time when the ticket was last updated, as reported by the ticket system.
uri: Option<String>The link to the ticket in the ticket system.
Trait Implementations§
Source§impl Clone for TicketInfo
impl Clone for TicketInfo
Source§fn clone(&self) -> TicketInfo
fn clone(&self) -> TicketInfo
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 TicketInfo
impl Debug for TicketInfo
Source§impl Default for TicketInfo
impl Default for TicketInfo
Source§fn default() -> TicketInfo
fn default() -> TicketInfo
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TicketInfo
impl<'de> Deserialize<'de> for TicketInfo
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 Serialize for TicketInfo
impl Serialize for TicketInfo
impl Part for TicketInfo
Auto Trait Implementations§
impl Freeze for TicketInfo
impl RefUnwindSafe for TicketInfo
impl Send for TicketInfo
impl Sync for TicketInfo
impl Unpin for TicketInfo
impl UnwindSafe for TicketInfo
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