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