pub struct PlatformBugReport {
pub bug_id: String,
pub status: PlatformBugStatus,
pub severity: u8,
pub points: String,
pub created_at_ms: u64,
pub triaged_at_ms: Option<u64>,
pub completed_at_ms: Option<u64>,
}Fields§
§bug_id: String§status: PlatformBugStatus§severity: u8§points: String§created_at_ms: u64§triaged_at_ms: Option<u64>§completed_at_ms: Option<u64>Trait Implementations§
Source§impl Clone for PlatformBugReport
impl Clone for PlatformBugReport
Source§fn clone(&self) -> PlatformBugReport
fn clone(&self) -> PlatformBugReport
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 PlatformBugReport
impl Debug for PlatformBugReport
Source§impl<'de> Deserialize<'de> for PlatformBugReport
impl<'de> Deserialize<'de> for PlatformBugReport
Source§fn deserialize<__D>(
__deserializer: __D,
) -> Result<PlatformBugReport, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(
__deserializer: __D,
) -> Result<PlatformBugReport, <__D as Deserializer<'de>>::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl Eq for PlatformBugReport
Source§impl PartialEq for PlatformBugReport
impl PartialEq for PlatformBugReport
Source§impl Serialize for PlatformBugReport
impl Serialize for PlatformBugReport
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl StructuralPartialEq for PlatformBugReport
Auto Trait Implementations§
impl Freeze for PlatformBugReport
impl RefUnwindSafe for PlatformBugReport
impl Send for PlatformBugReport
impl Sync for PlatformBugReport
impl Unpin for PlatformBugReport
impl UnsafeUnpin for PlatformBugReport
impl UnwindSafe for PlatformBugReport
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