pub struct Arg<'a> {
pub value: Expression<'a>,
pub keyword: Option<Name<'a>>,
pub equal: Option<AssignEqual<'a>>,
pub comma: Option<Comma<'a>>,
pub star: &'a str,
pub whitespace_after_star: ParenthesizableWhitespace<'a>,
pub whitespace_after_arg: ParenthesizableWhitespace<'a>,
}
Fields§
§value: Expression<'a>
§keyword: Option<Name<'a>>
§equal: Option<AssignEqual<'a>>
§comma: Option<Comma<'a>>
§star: &'a str
§whitespace_after_star: ParenthesizableWhitespace<'a>
§whitespace_after_arg: ParenthesizableWhitespace<'a>
Implementations§
Trait Implementations§
impl<'a> Eq for Arg<'a>
impl<'a> StructuralPartialEq for Arg<'a>
Auto Trait Implementations§
impl<'a> Freeze for Arg<'a>
impl<'a> RefUnwindSafe for Arg<'a>
impl<'a> Send for Arg<'a>
impl<'a> Sync for Arg<'a>
impl<'a> Unpin for Arg<'a>
impl<'a> UnwindSafe for Arg<'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