pub struct RubyExtEmitStats {
pub bytes_written: usize,
pub items_emitted: usize,
pub errors: usize,
pub warnings: usize,
pub classes_emitted: usize,
pub modules_emitted: usize,
pub methods_emitted: usize,
}Expand description
Ruby emit stats
Fields§
§bytes_written: usize§items_emitted: usize§errors: usize§warnings: usize§classes_emitted: usize§modules_emitted: usize§methods_emitted: usizeTrait Implementations§
Source§impl Clone for RubyExtEmitStats
impl Clone for RubyExtEmitStats
Source§fn clone(&self) -> RubyExtEmitStats
fn clone(&self) -> RubyExtEmitStats
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 RubyExtEmitStats
impl Debug for RubyExtEmitStats
Source§impl Default for RubyExtEmitStats
impl Default for RubyExtEmitStats
Source§fn default() -> RubyExtEmitStats
fn default() -> RubyExtEmitStats
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for RubyExtEmitStats
impl RefUnwindSafe for RubyExtEmitStats
impl Send for RubyExtEmitStats
impl Sync for RubyExtEmitStats
impl Unpin for RubyExtEmitStats
impl UnsafeUnpin for RubyExtEmitStats
impl UnwindSafe for RubyExtEmitStats
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