pub trait IssueExt:
IsA<Issue>
+ Sealed
+ 'static {
// Provided methods
fn id(&self) -> Option<GString> { ... }
fn kind(&self) -> IssueKind { ... }
fn url(&self) -> Option<GString> { ... }
fn set_id(&self, id: &str) { ... }
fn set_kind(&self, kind: IssueKind) { ... }
fn set_url(&self, url: &str) { ... }
}
Provided Methods§
sourcefn url(&self) -> Option<GString>
fn url(&self) -> Option<GString>
Gets the URL associacted with this issue, usually referencing a bug report or issue description.
§Returns
the URL.
Object Safety§
This trait is not object safe.