Skip to main content

BugReport

Struct BugReport 

Source
pub struct BugReport {
Show 31 fields pub pending: Option<Pending>, pub msgid: Option<String>, pub owner: Option<String>, pub keywords: Option<String>, pub affects: Option<String>, pub unarchived: Option<bool>, pub forwarded: Option<String>, pub summary: Option<String>, pub bug_num: Option<BugId>, pub archived: Option<bool>, pub found_versions: Option<Vec<Version>>, pub done: Option<String>, pub severity: Option<String>, pub package: Option<String>, pub fixed_versions: Option<Vec<(Option<String>, Option<Version>)>>, pub originator: Option<String>, pub blocks: Option<String>, pub found_date: Option<Vec<u32>>, pub outlook: Option<String>, pub id: Option<BugId>, pub found: bool, pub fixed: bool, pub last_modified: Option<u32>, pub tags: Option<String>, pub subject: Option<String>, pub location: Option<String>, pub mergedwith: Option<Vec<BugId>>, pub blockedby: Option<String>, pub fixed_date: Option<Vec<u32>>, pub log_modified: Option<u32>, pub source: Option<String>,
}
Expand description

Detailed information about a bug report

Contains comprehensive metadata about a bug including its status, severity, package information, and related bugs.

Fields§

§pending: Option<Pending>

The pending status of the bug

§msgid: Option<String>

Message ID of the initial bug report email

§owner: Option<String>

Email address of the person who currently owns/is working on this bug

§keywords: Option<String>
👎Deprecated:

Use tags instead

Keywords associated with the bug (deprecated, use tags instead)

§affects: Option<String>

Packages that are affected by this bug (in addition to the primary package)

§unarchived: Option<bool>

Whether the bug has been unarchived and can be archived again

§forwarded: Option<String>

Email address or URL where the bug has been forwarded to upstream

§summary: Option<String>

Short summary description of the bug

§bug_num: Option<BugId>

The unique bug number identifier

§archived: Option<bool>

Whether the bug has been archived (old/resolved bugs)

§found_versions: Option<Vec<Version>>

Versions of the package where this bug was found to exist

§done: Option<String>

Email address of the person who marked this bug as done/resolved

§severity: Option<String>

Severity level of the bug (e.g., “serious”, “important”, “normal”, “minor”, “wishlist”)

§package: Option<String>

Name of the package this bug affects

§fixed_versions: Option<Vec<(Option<String>, Option<Version>)>>

Versions of the package where this bug has been fixed

§originator: Option<String>

Email address of the person who originally reported this bug

§blocks: Option<String>

Comma-separated list of bug IDs that this bug blocks

§found_date: Option<Vec<u32>>
👎Deprecated:

empty for now

Dates when the bug was found in specific versions (deprecated, currently empty)

§outlook: Option<String>

Free-form text describing the outlook for fixing this bug

§id: Option<BugId>
👎Deprecated:

use bug_num

Legacy bug ID field (deprecated, use bug_num instead)

§found: bool

Whether the bug has been found in any versions

§fixed: bool

Whether the bug has been fixed in any versions

§last_modified: Option<u32>

Unix timestamp of when the bug was last modified

§tags: Option<String>

Space-separated list of tags associated with this bug

§subject: Option<String>

The title/subject line of the bug report

§location: Option<String>

Physical location or context information for the bug

§mergedwith: Option<Vec<BugId>>

List of bug IDs that this bug has been merged with

§blockedby: Option<String>

Comma-separated list of bug IDs that block this bug

§fixed_date: Option<Vec<u32>>
👎Deprecated:

empty for now

Dates when the bug was fixed in specific versions (deprecated, currently empty)

§log_modified: Option<u32>

Unix timestamp of when the bug log was last modified

§source: Option<String>

Source package name (for binary packages built from source)

Trait Implementations§

Source§

impl Debug for BugReport

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Display for BugReport

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl From<&Element> for BugReport

Source§

fn from(item: &Element) -> Self

Converts to this type from the input type.

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> PolicyExt for T
where T: ?Sized,

Source§

fn and<P, B, E>(self, other: P) -> And<T, P>
where T: Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow only if self and other return Action::Follow. Read more
Source§

fn or<P, B, E>(self, other: P) -> Or<T, P>
where T: Policy<B, E>, P: Policy<B, E>,

Create a new Policy that returns Action::Follow if either self or other returns Action::Follow. Read more
Source§

impl<T> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. Read more
Source§

impl<T> ToStringFallible for T
where T: Display,

Source§

fn try_to_string(&self) -> Result<String, TryReserveError>

ToString::to_string, but without panic on OOM.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more