pub struct FrameworkList {
pub frameworks: Option<Vec<FrameworkRow>>,
}Fields§
§frameworks: Option<Vec<FrameworkRow>>Frameworks is each framework and how many clauses it publishes.
Implementations§
Source§impl FrameworkList
impl FrameworkList
pub fn new() -> FrameworkList
Trait Implementations§
Source§impl Clone for FrameworkList
impl Clone for FrameworkList
Source§fn clone(&self) -> FrameworkList
fn clone(&self) -> FrameworkList
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 FrameworkList
impl Debug for FrameworkList
Source§impl Default for FrameworkList
impl Default for FrameworkList
Source§fn default() -> FrameworkList
fn default() -> FrameworkList
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for FrameworkList
impl<'de> Deserialize<'de> for FrameworkList
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 FrameworkList
impl PartialEq for FrameworkList
Source§impl Serialize for FrameworkList
impl Serialize for FrameworkList
impl StructuralPartialEq for FrameworkList
Auto Trait Implementations§
impl Freeze for FrameworkList
impl RefUnwindSafe for FrameworkList
impl Send for FrameworkList
impl Sync for FrameworkList
impl Unpin for FrameworkList
impl UnsafeUnpin for FrameworkList
impl UnwindSafe for FrameworkList
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