pub struct PhpDocTag {
pub name: String,
pub body: Option<PhpDocText>,
pub span: Span,
}Expand description
A block-level @tag — generic, no semantic interpretation.
Fields§
§name: StringRaw tag name, e.g. "param", "psalm-type", "return".
body: Option<PhpDocText>§span: SpanTrait Implementations§
Auto Trait Implementations§
impl Freeze for PhpDocTag
impl RefUnwindSafe for PhpDocTag
impl Send for PhpDocTag
impl Sync for PhpDocTag
impl Unpin for PhpDocTag
impl UnsafeUnpin for PhpDocTag
impl UnwindSafe for PhpDocTag
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