pub struct Parameter<'a> {
pub key: ParseString<'a>,
pub val: Option<ParseString<'a>>,
}
Expand description
Zero-copy version of crate::properties::Parameter
Fields§
§key: ParseString<'a>
§val: Option<ParseString<'a>>
Implementations§
Trait Implementations§
impl<'a> Eq for Parameter<'a>
impl<'a> StructuralPartialEq for Parameter<'a>
Auto Trait Implementations§
impl<'a> Freeze for Parameter<'a>
impl<'a> RefUnwindSafe for Parameter<'a>
impl<'a> Send for Parameter<'a>
impl<'a> Sync for Parameter<'a>
impl<'a> Unpin for Parameter<'a>
impl<'a> UnwindSafe for Parameter<'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