pub struct SwcComments {
pub leading: Arc<DashMap<BytePos, Vec<Comment>, RandomState>>,
pub trailing: Arc<DashMap<BytePos, Vec<Comment>, RandomState>>,
}
Expand description
Multi-threaded implementation of Comments
Fields§
§leading: Arc<DashMap<BytePos, Vec<Comment>, RandomState>>
§trailing: Arc<DashMap<BytePos, Vec<Comment>, RandomState>>
Trait Implementations§
source§impl Clone for SwcComments
impl Clone for SwcComments
source§fn clone(&self) -> SwcComments
fn clone(&self) -> SwcComments
Returns a copy 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 Comments for SwcComments
impl Comments for SwcComments
fn add_leading(&self, pos: BytePos, cmt: Comment)
fn add_leading_comments(&self, pos: BytePos, comments: Vec<Comment>)
fn has_leading(&self, pos: BytePos) -> bool
fn move_leading(&self, from: BytePos, to: BytePos)
fn take_leading(&self, pos: BytePos) -> Option<Vec<Comment>>
fn get_leading(&self, pos: BytePos) -> Option<Vec<Comment>>
fn add_trailing(&self, pos: BytePos, cmt: Comment)
fn add_trailing_comments(&self, pos: BytePos, comments: Vec<Comment>)
fn has_trailing(&self, pos: BytePos) -> bool
fn move_trailing(&self, from: BytePos, to: BytePos)
fn take_trailing(&self, pos: BytePos) -> Option<Vec<Comment>>
fn get_trailing(&self, pos: BytePos) -> Option<Vec<Comment>>
fn add_pure_comment(&self, pos: BytePos)
fn with_leading<F, Ret>(&self, pos: BytePos, f: F) -> Ret
fn with_trailing<F, Ret>(&self, pos: BytePos, f: F) -> Ret
source§impl Default for SwcComments
impl Default for SwcComments
source§fn default() -> SwcComments
fn default() -> SwcComments
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for SwcComments
impl !RefUnwindSafe for SwcComments
impl Send for SwcComments
impl Sync for SwcComments
impl Unpin for SwcComments
impl !UnwindSafe for SwcComments
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
clone_to_uninit
)source§impl<C> CommentsExt for Cwhere
C: Comments,
impl<C> CommentsExt for Cwhere
C: Comments,
source§fn with_leading<F, Ret>(&self, pos: BytePos, op: F) -> Ret
fn with_leading<F, Ret>(&self, pos: BytePos, op: F) -> Ret
👎Deprecated since 0.13.5: helper methods are merged into Comments itself
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more