pub struct ErrorGroup {
pub group_id: Option<String>,
pub name: Option<String>,
pub resolution_status: Option<String>,
pub tracking_issues: Option<Vec<TrackingIssue>>,
}
Expand description
Description of a group of similar error events.
§Activities
This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).
- groups get projects (response)
- groups update projects (request|response)
Fields§
§group_id: Option<String>
An opaque identifier of the group. This field is assigned by the Error Reporting system and always populated. In the group resource name, the group_id
is a unique identifier for a particular error group. The identifier is derived from key parts of the error-log content and is treated as Service Data. For information about how Service Data is handled, see Google Cloud Privacy Notice.
name: Option<String>
The group resource name. Written as projects/{projectID}/groups/{group_id}
. Example: projects/my-project-123/groups/my-group
In the group resource name, the group_id
is a unique identifier for a particular error group. The identifier is derived from key parts of the error-log content and is treated as Service Data. For information about how Service Data is handled, see Google Cloud Privacy Notice.
resolution_status: Option<String>
Error group’s resolution status. An unspecified resolution status will be interpreted as OPEN
tracking_issues: Option<Vec<TrackingIssue>>
Associated tracking issues.
Trait Implementations§
Source§impl Clone for ErrorGroup
impl Clone for ErrorGroup
Source§fn clone(&self) -> ErrorGroup
fn clone(&self) -> ErrorGroup
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for ErrorGroup
impl Debug for ErrorGroup
Source§impl Default for ErrorGroup
impl Default for ErrorGroup
Source§fn default() -> ErrorGroup
fn default() -> ErrorGroup
Source§impl<'de> Deserialize<'de> for ErrorGroup
impl<'de> Deserialize<'de> for ErrorGroup
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>,
Source§impl Serialize for ErrorGroup
impl Serialize for ErrorGroup
impl RequestValue for ErrorGroup
impl ResponseResult for ErrorGroup
Auto Trait Implementations§
impl Freeze for ErrorGroup
impl RefUnwindSafe for ErrorGroup
impl Send for ErrorGroup
impl Sync for ErrorGroup
impl Unpin for ErrorGroup
impl UnwindSafe for ErrorGroup
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more