pub struct FrameworkRow {
pub edition: Option<String>,
pub framework: Option<String>,
pub name: Option<String>,
pub publisher: Option<String>,
pub total: Option<i32>,
pub unit: Option<String>,
pub units: Option<String>,
}Fields§
§edition: Option<String>Edition is which edition this clause list is taken from.
framework: Option<String>Framework is the framework id.
name: Option<String>Name is the published standard’s name.
publisher: Option<String>Publisher is who publishes it.
total: Option<i32>Total is how many clauses the standard publishes.
unit: Option<String>Unit is what one clause is; Units is its plural.
units: Option<String>Units is Unit’s plural, carried so a caller renders "12 controls" without having to pluralise a word it does not know.
Implementations§
Source§impl FrameworkRow
impl FrameworkRow
pub fn new() -> FrameworkRow
Trait Implementations§
Source§impl Clone for FrameworkRow
impl Clone for FrameworkRow
Source§fn clone(&self) -> FrameworkRow
fn clone(&self) -> FrameworkRow
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 FrameworkRow
impl Debug for FrameworkRow
Source§impl Default for FrameworkRow
impl Default for FrameworkRow
Source§fn default() -> FrameworkRow
fn default() -> FrameworkRow
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for FrameworkRow
impl<'de> Deserialize<'de> for FrameworkRow
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 FrameworkRow
impl PartialEq for FrameworkRow
Source§impl Serialize for FrameworkRow
impl Serialize for FrameworkRow
impl StructuralPartialEq for FrameworkRow
Auto Trait Implementations§
impl Freeze for FrameworkRow
impl RefUnwindSafe for FrameworkRow
impl Send for FrameworkRow
impl Sync for FrameworkRow
impl Unpin for FrameworkRow
impl UnsafeUnpin for FrameworkRow
impl UnwindSafe for FrameworkRow
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