pub struct TailwindComment {
pub span: Range<usize>,
pub content: String,
}Expand description
A Tailwind comment.
Fields§
§span: Range<usize>The span of the comment.
content: StringThe content of the comment.
Trait Implementations§
Source§impl Clone for TailwindComment
impl Clone for TailwindComment
Source§fn clone(&self) -> TailwindComment
fn clone(&self) -> TailwindComment
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 TailwindComment
impl Debug for TailwindComment
Source§impl<'de> Deserialize<'de> for TailwindComment
impl<'de> Deserialize<'de> for TailwindComment
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for TailwindComment
impl PartialEq for TailwindComment
Source§impl Serialize for TailwindComment
impl Serialize for TailwindComment
impl Eq for TailwindComment
impl StructuralPartialEq for TailwindComment
Auto Trait Implementations§
impl Freeze for TailwindComment
impl RefUnwindSafe for TailwindComment
impl Send for TailwindComment
impl Sync for TailwindComment
impl Unpin for TailwindComment
impl UnsafeUnpin for TailwindComment
impl UnwindSafe for TailwindComment
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