Struct swc_common::comments::SingleThreadedComments
source · pub struct SingleThreadedComments { /* private fields */ }
Expand description
Single-threaded storage for comments.
Implementations§
source§impl SingleThreadedComments
impl SingleThreadedComments
sourcepub fn from_leading_and_trailing(
leading: SingleThreadedCommentsMap,
trailing: SingleThreadedCommentsMap
) -> Self
pub fn from_leading_and_trailing( leading: SingleThreadedCommentsMap, trailing: SingleThreadedCommentsMap ) -> Self
Creates a new SingleThreadedComments
from the provided leading and
trailing.
sourcepub fn take_all(self) -> (SingleThreadedCommentsMap, SingleThreadedCommentsMap)
pub fn take_all(self) -> (SingleThreadedCommentsMap, SingleThreadedCommentsMap)
Takes all the comments as (leading, trailing).
sourcepub fn borrow_all(
&self
) -> (Ref<'_, SingleThreadedCommentsMapInner>, Ref<'_, SingleThreadedCommentsMapInner>)
pub fn borrow_all( &self ) -> (Ref<'_, SingleThreadedCommentsMapInner>, Ref<'_, SingleThreadedCommentsMapInner>)
Borrows all the comments as (leading, trailing).
sourcepub fn borrow_all_mut(
&self
) -> (RefMut<'_, SingleThreadedCommentsMapInner>, RefMut<'_, SingleThreadedCommentsMapInner>)
pub fn borrow_all_mut( &self ) -> (RefMut<'_, SingleThreadedCommentsMapInner>, RefMut<'_, SingleThreadedCommentsMapInner>)
Borrows all the comments as (leading, trailing).
pub fn with_leading<F, Ret>(&self, pos: BytePos, op: F) -> Retwhere F: FnOnce(&[Comment]) -> Ret,
pub fn with_trailing<F, Ret>(&self, pos: BytePos, op: F) -> Retwhere F: FnOnce(&[Comment]) -> Ret,
Trait Implementations§
source§impl Clone for SingleThreadedComments
impl Clone for SingleThreadedComments
source§fn clone(&self) -> SingleThreadedComments
fn clone(&self) -> SingleThreadedComments
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 SingleThreadedComments
impl Comments for SingleThreadedComments
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) -> Retwhere Self: Sized, F: FnOnce(&[Comment]) -> Ret,
fn with_trailing<F, Ret>(&self, pos: BytePos, f: F) -> Retwhere Self: Sized, F: FnOnce(&[Comment]) -> Ret,
source§impl Debug for SingleThreadedComments
impl Debug for SingleThreadedComments
source§impl Default for SingleThreadedComments
impl Default for SingleThreadedComments
source§fn default() -> SingleThreadedComments
fn default() -> SingleThreadedComments
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl !RefUnwindSafe for SingleThreadedComments
impl !Send for SingleThreadedComments
impl !Sync for SingleThreadedComments
impl Unpin for SingleThreadedComments
impl !UnwindSafe for SingleThreadedComments
Blanket Implementations§
source§impl<T> ArchivePointee for T
impl<T> ArchivePointee for T
§type ArchivedMetadata = ()
type ArchivedMetadata = ()
The archived version of the pointer metadata for this type.
source§fn pointer_metadata(
_: &<T as ArchivePointee>::ArchivedMetadata
) -> <T as Pointee>::Metadata
fn pointer_metadata( _: &<T as ArchivePointee>::ArchivedMetadata ) -> <T as Pointee>::Metadata
Converts some archived metadata to the pointer metadata for itself.
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<C> CommentsExt for Cwhere
C: Comments,
impl<C> CommentsExt for Cwhere C: Comments,
source§impl<F, W, T, D> Deserialize<With<T, W>, D> for Fwhere
W: DeserializeWith<F, T, D>,
D: Fallible + ?Sized,
F: ?Sized,
impl<F, W, T, D> Deserialize<With<T, W>, D> for Fwhere W: DeserializeWith<F, T, D>, D: Fallible + ?Sized, F: ?Sized,
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> LayoutRaw for T
impl<T> LayoutRaw for T
source§fn layout_raw(_: <T as Pointee>::Metadata) -> Result<Layout, LayoutError>
fn layout_raw(_: <T as Pointee>::Metadata) -> Result<Layout, LayoutError>
Gets the layout of the type.