pub struct ZypperPatch {
pub category: Option<String>,
pub patch_name: Option<String>,
pub severity: Option<String>,
pub summary: Option<String>,
}Expand description
Details related to a Zypper Patch.
This type is not used in any activity, and only used as part of another schema.
Fields§
§category: Option<String>The category of the patch.
patch_name: Option<String>The name of the patch.
severity: Option<String>The severity specified for this patch
summary: Option<String>Any summary information provided about this patch.
Trait Implementations§
Source§impl Clone for ZypperPatch
impl Clone for ZypperPatch
Source§fn clone(&self) -> ZypperPatch
fn clone(&self) -> ZypperPatch
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 ZypperPatch
impl Debug for ZypperPatch
Source§impl Default for ZypperPatch
impl Default for ZypperPatch
Source§fn default() -> ZypperPatch
fn default() -> ZypperPatch
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ZypperPatch
impl<'de> Deserialize<'de> for ZypperPatch
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 ZypperPatch
impl Serialize for ZypperPatch
impl Part for ZypperPatch
Auto Trait Implementations§
impl Freeze for ZypperPatch
impl RefUnwindSafe for ZypperPatch
impl Send for ZypperPatch
impl Sync for ZypperPatch
impl Unpin for ZypperPatch
impl UnwindSafe for ZypperPatch
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