pub struct TParamCommand {
pub position: Option<(usize, usize)>,
pub parameter: String,
pub children: Vec<CommentChild>,
}Expand description
A \tparam command.
Fields§
§position: Option<(usize, usize)>The nesting depth and the index of the template parameter, if this command refers to a valid template parameter.
parameter: StringThe template parameter.
children: Vec<CommentChild>The children of this type parameter.
Trait Implementations§
Source§impl Clone for TParamCommand
impl Clone for TParamCommand
Source§fn clone(&self) -> TParamCommand
fn clone(&self) -> TParamCommand
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 TParamCommand
impl Debug for TParamCommand
Source§impl PartialEq for TParamCommand
impl PartialEq for TParamCommand
impl Eq for TParamCommand
impl StructuralPartialEq for TParamCommand
Auto Trait Implementations§
impl Freeze for TParamCommand
impl RefUnwindSafe for TParamCommand
impl Send for TParamCommand
impl Sync for TParamCommand
impl Unpin for TParamCommand
impl UnwindSafe for TParamCommand
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