pub enum CommentKind {
Line,
Block,
Doc,
InnerDoc,
}Variants§
Line
// ... (and //// ..., which rustc does not treat as doc)
Block
/* ... */ (and /*** ... */, /**/)
Doc
/// ... or /** ... */ — becomes an outer #[doc] attribute
InnerDoc
//! ... or /*! ... */ — becomes an inner #![doc] attribute
Trait Implementations§
Source§impl Clone for CommentKind
impl Clone for CommentKind
impl Copy for CommentKind
Source§impl Debug for CommentKind
impl Debug for CommentKind
Source§impl<'de> Deserialize<'de> for CommentKind
impl<'de> Deserialize<'de> for CommentKind
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
impl Eq for CommentKind
Source§impl PartialEq for CommentKind
impl PartialEq for CommentKind
Source§impl Serialize for CommentKind
impl Serialize for CommentKind
impl StructuralPartialEq for CommentKind
Auto Trait Implementations§
impl Freeze for CommentKind
impl RefUnwindSafe for CommentKind
impl Send for CommentKind
impl Sync for CommentKind
impl Unpin for CommentKind
impl UnsafeUnpin for CommentKind
impl UnwindSafe for CommentKind
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