pub struct LearningPostProcessor;Expand description
Best-effort TODO(human) injector for the Learning style.
For each fenced code block in text, we look for lines that begin a
function definition in one of the languages we recognise (Rust, Go,
Python, JavaScript/TypeScript, C/C++/Java). When we find one, we
emit a TODO(human): ... comment line immediately afterward, using
the language’s comment syntax.
Implementations§
Trait Implementations§
Source§impl Clone for LearningPostProcessor
impl Clone for LearningPostProcessor
Source§fn clone(&self) -> LearningPostProcessor
fn clone(&self) -> LearningPostProcessor
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 LearningPostProcessor
impl Debug for LearningPostProcessor
Source§impl Default for LearningPostProcessor
impl Default for LearningPostProcessor
Source§fn default() -> LearningPostProcessor
fn default() -> LearningPostProcessor
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for LearningPostProcessor
impl RefUnwindSafe for LearningPostProcessor
impl Send for LearningPostProcessor
impl Sync for LearningPostProcessor
impl Unpin for LearningPostProcessor
impl UnsafeUnpin for LearningPostProcessor
impl UnwindSafe for LearningPostProcessor
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