pub struct SecurityBulletin {
pub bulletin_id: Option<String>,
pub submission_time: Option<DateTime<Utc>>,
pub suggested_upgrade_version: Option<String>,
}Expand description
SecurityBulletin are notifications of vulnerabilities of Google products.
This type is not used in any activity, and only used as part of another schema.
Fields§
§bulletin_id: Option<String>ID of the bulletin corresponding to the vulnerability.
submission_time: Option<DateTime<Utc>>Submission time of this Security Bulletin.
suggested_upgrade_version: Option<String>This represents a version that the cluster receiving this notification should be upgraded to, based on its current version. For example, 1.15.0
Trait Implementations§
Source§impl Clone for SecurityBulletin
impl Clone for SecurityBulletin
Source§fn clone(&self) -> SecurityBulletin
fn clone(&self) -> SecurityBulletin
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 SecurityBulletin
impl Debug for SecurityBulletin
Source§impl Default for SecurityBulletin
impl Default for SecurityBulletin
Source§fn default() -> SecurityBulletin
fn default() -> SecurityBulletin
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for SecurityBulletin
impl<'de> Deserialize<'de> for SecurityBulletin
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 SecurityBulletin
impl Serialize for SecurityBulletin
impl Part for SecurityBulletin
Auto Trait Implementations§
impl Freeze for SecurityBulletin
impl RefUnwindSafe for SecurityBulletin
impl Send for SecurityBulletin
impl Sync for SecurityBulletin
impl Unpin for SecurityBulletin
impl UnwindSafe for SecurityBulletin
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