pub struct Warninglist {
pub id: Option<String>,
pub name: Option<String>,
pub type: Option<Type>,
pub description: Option<String>,
pub version: Option<String>,
pub enabled: Option<bool>,
pub warninglist_entry_count: Option<String>,
pub valid_attributes: Option<String>,
pub warninglist_entry: Option<Vec<WarninglistEntry>>,
}
Fields§
§id: Option<String>
§name: Option<String>
§type: Option<Type>
§description: Option<String>
§version: Option<String>
§enabled: Option<bool>
§warninglist_entry_count: Option<String>
§valid_attributes: Option<String>
List of comma separated warninglist types.
warninglist_entry: Option<Vec<WarninglistEntry>>
Implementations§
Source§impl Warninglist
impl Warninglist
pub fn new() -> Warninglist
Trait Implementations§
Source§impl Clone for Warninglist
impl Clone for Warninglist
Source§fn clone(&self) -> Warninglist
fn clone(&self) -> Warninglist
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 Warninglist
impl Debug for Warninglist
Source§impl Default for Warninglist
impl Default for Warninglist
Source§fn default() -> Warninglist
fn default() -> Warninglist
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for Warninglist
impl<'de> Deserialize<'de> for Warninglist
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 PartialEq for Warninglist
impl PartialEq for Warninglist
Source§impl Serialize for Warninglist
impl Serialize for Warninglist
impl StructuralPartialEq for Warninglist
Auto Trait Implementations§
impl Freeze for Warninglist
impl RefUnwindSafe for Warninglist
impl Send for Warninglist
impl Sync for Warninglist
impl Unpin for Warninglist
impl UnwindSafe for Warninglist
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