pub trait CommentsExt: Comments {
// Provided methods
fn with_leading<F, Ret>(&self, pos: BytePos, op: F) -> Ret
where F: FnOnce(&[Comment]) -> Ret { ... }
fn with_trailing<F, Ret>(&self, pos: BytePos, op: F) -> Ret
where F: FnOnce(&[Comment]) -> Ret { ... }
}
๐Deprecated since 0.13.5: helper methods are merged into Comments itself
Provided Methodsยง
fn with_leading<F, Ret>(&self, pos: BytePos, op: F) -> Ret
๐Deprecated since 0.13.5: helper methods are merged into Comments itself
fn with_trailing<F, Ret>(&self, pos: BytePos, op: F) -> Ret
๐Deprecated since 0.13.5: helper methods are merged into Comments itself
Object Safetyยง
This trait is not object safe.