pub struct GooglePrivacyDlpV2Error {
pub details: Option<GoogleRpcStatus>,
pub extra_info: Option<String>,
pub timestamps: Option<Vec<DateTime<Utc>>>,
}Expand description
Details information about an error encountered during job execution or the results of an unsuccessful activation of the JobTrigger.
This type is not used in any activity, and only used as part of another schema.
Fields§
§details: Option<GoogleRpcStatus>Detailed error codes and messages.
extra_info: Option<String>Additional information about the error.
timestamps: Option<Vec<DateTime<Utc>>>The times the error occurred. List includes the oldest timestamp and the last 9 timestamps.
Trait Implementations§
Source§impl Clone for GooglePrivacyDlpV2Error
impl Clone for GooglePrivacyDlpV2Error
Source§fn clone(&self) -> GooglePrivacyDlpV2Error
fn clone(&self) -> GooglePrivacyDlpV2Error
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 GooglePrivacyDlpV2Error
impl Debug for GooglePrivacyDlpV2Error
Source§impl Default for GooglePrivacyDlpV2Error
impl Default for GooglePrivacyDlpV2Error
Source§fn default() -> GooglePrivacyDlpV2Error
fn default() -> GooglePrivacyDlpV2Error
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GooglePrivacyDlpV2Error
impl<'de> Deserialize<'de> for GooglePrivacyDlpV2Error
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 Serialize for GooglePrivacyDlpV2Error
impl Serialize for GooglePrivacyDlpV2Error
impl Part for GooglePrivacyDlpV2Error
Auto Trait Implementations§
impl Freeze for GooglePrivacyDlpV2Error
impl RefUnwindSafe for GooglePrivacyDlpV2Error
impl Send for GooglePrivacyDlpV2Error
impl Sync for GooglePrivacyDlpV2Error
impl Unpin for GooglePrivacyDlpV2Error
impl UnwindSafe for GooglePrivacyDlpV2Error
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