pub struct StreamDeclStats {
pub core: usize,
pub combinators: usize,
pub monad: usize,
pub theorems: usize,
}Expand description
Count stream-related declarations by category.
Fields§
§core: usizeNumber of core type/constructor declarations.
combinators: usizeNumber of combinator declarations.
monad: usizeNumber of monad/applicative declarations.
theorems: usizeNumber of theorem declarations.
Implementations§
Trait Implementations§
Source§impl Clone for StreamDeclStats
impl Clone for StreamDeclStats
Source§fn clone(&self) -> StreamDeclStats
fn clone(&self) -> StreamDeclStats
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 StreamDeclStats
impl Debug for StreamDeclStats
Source§impl Default for StreamDeclStats
impl Default for StreamDeclStats
Source§fn default() -> StreamDeclStats
fn default() -> StreamDeclStats
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for StreamDeclStats
impl RefUnwindSafe for StreamDeclStats
impl Send for StreamDeclStats
impl Sync for StreamDeclStats
impl Unpin for StreamDeclStats
impl UnsafeUnpin for StreamDeclStats
impl UnwindSafe for StreamDeclStats
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