pub struct RubyCodeStats {
pub classes: usize,
pub modules: usize,
pub methods: usize,
pub lambdas: usize,
pub blocks: usize,
pub total_lines: usize,
}Expand description
Ruby code stats
Fields§
§classes: usize§modules: usize§methods: usize§lambdas: usize§blocks: usize§total_lines: usizeTrait Implementations§
Source§impl Clone for RubyCodeStats
impl Clone for RubyCodeStats
Source§fn clone(&self) -> RubyCodeStats
fn clone(&self) -> RubyCodeStats
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 RubyCodeStats
impl Debug for RubyCodeStats
Source§impl Default for RubyCodeStats
impl Default for RubyCodeStats
Source§fn default() -> RubyCodeStats
fn default() -> RubyCodeStats
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for RubyCodeStats
impl RefUnwindSafe for RubyCodeStats
impl Send for RubyCodeStats
impl Sync for RubyCodeStats
impl Unpin for RubyCodeStats
impl UnsafeUnpin for RubyCodeStats
impl UnwindSafe for RubyCodeStats
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