pub struct BugTargetDiff {
pub bug_reported_acknowledgement: Option<String>,
pub bug_reporting_guidelines: Option<String>,
pub content_templates: Option<String>,
}Expand description
Representation of the bug_target-diff resource
Fields§
§bug_reported_acknowledgement: Option<String>After reporting a bug, I can expect the following.
This message of acknowledgement will be displayed to anyone after reporting a bug.
bug_reporting_guidelines: Option<String>Helpful guidelines for reporting a bug
These guidelines will be shown to everyone reporting a bug and should be text or a bulleted list with your particular requirements, if any.
content_templates: Option<String>Templates to use for reporting a bug
This pre-defined template will be given to the users to guide them when reporting a bug.
Trait Implementations§
Source§impl Clone for BugTargetDiff
impl Clone for BugTargetDiff
Source§fn clone(&self) -> BugTargetDiff
fn clone(&self) -> BugTargetDiff
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 BugTargetDiff
impl Debug for BugTargetDiff
Source§impl Default for BugTargetDiff
impl Default for BugTargetDiff
Source§impl<'de> Deserialize<'de> for BugTargetDiff
impl<'de> Deserialize<'de> for BugTargetDiff
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 BugTargetDiff
impl PartialEq for BugTargetDiff
Source§impl Serialize for BugTargetDiff
impl Serialize for BugTargetDiff
impl StructuralPartialEq for BugTargetDiff
Auto Trait Implementations§
impl Freeze for BugTargetDiff
impl RefUnwindSafe for BugTargetDiff
impl Send for BugTargetDiff
impl Sync for BugTargetDiff
impl Unpin for BugTargetDiff
impl UnwindSafe for BugTargetDiff
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