pub struct RdArgument<'a> {
pub name: &'a [RdNode],
pub description: &'a [RdNode],
}Expand description
A single \item{name}{description} entry within \arguments (see
RdDocument::arguments).
Fields§
§name: &'a [RdNode]The argument’s name, i.e. \item{name}{...}’s first argument
group.
description: &'a [RdNode]The argument’s description, i.e. \item{...}{description}’s
second argument group.
Trait Implementations§
Source§impl<'a> Clone for RdArgument<'a>
impl<'a> Clone for RdArgument<'a>
Source§fn clone(&self) -> RdArgument<'a>
fn clone(&self) -> RdArgument<'a>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl<'a> Copy for RdArgument<'a>
Source§impl<'a> Debug for RdArgument<'a>
impl<'a> Debug for RdArgument<'a>
Source§impl<'a> PartialEq for RdArgument<'a>
impl<'a> PartialEq for RdArgument<'a>
impl<'a> StructuralPartialEq for RdArgument<'a>
Auto Trait Implementations§
impl<'a> Freeze for RdArgument<'a>
impl<'a> RefUnwindSafe for RdArgument<'a>
impl<'a> Send for RdArgument<'a>
impl<'a> Sync for RdArgument<'a>
impl<'a> Unpin for RdArgument<'a>
impl<'a> UnsafeUnpin for RdArgument<'a>
impl<'a> UnwindSafe for RdArgument<'a>
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