pub struct KeywordMatch {
pub keyword: String,
pub value: String,
pub start: usize,
pub end: usize,
}Fields§
§keyword: String§value: String§start: usize§end: usizeTrait Implementations§
Source§impl Clone for KeywordMatch
impl Clone for KeywordMatch
Source§fn clone(&self) -> KeywordMatch
fn clone(&self) -> KeywordMatch
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 KeywordMatch
impl Debug for KeywordMatch
Source§impl PartialEq for KeywordMatch
impl PartialEq for KeywordMatch
impl Eq for KeywordMatch
impl StructuralPartialEq for KeywordMatch
Auto Trait Implementations§
impl Freeze for KeywordMatch
impl RefUnwindSafe for KeywordMatch
impl Send for KeywordMatch
impl Sync for KeywordMatch
impl Unpin for KeywordMatch
impl UnsafeUnpin for KeywordMatch
impl UnwindSafe for KeywordMatch
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