pub struct AbsoluteKeywordLocation<'s> {
pub schema_url: &'s str,
pub keyword_path: Option<KeywordPath<'s>>,
}Expand description
The absolute, dereferenced location of the validating keyword
Fields§
§schema_url: &'s strThe absolute, dereferenced schema location.
keyword_path: Option<KeywordPath<'s>>Location within the schema_url.
Trait Implementations§
Source§impl<'s> Clone for AbsoluteKeywordLocation<'s>
impl<'s> Clone for AbsoluteKeywordLocation<'s>
Source§fn clone(&self) -> AbsoluteKeywordLocation<'s>
fn clone(&self) -> AbsoluteKeywordLocation<'s>
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<'s> Debug for AbsoluteKeywordLocation<'s>
impl<'s> Debug for AbsoluteKeywordLocation<'s>
Auto Trait Implementations§
impl<'s> Freeze for AbsoluteKeywordLocation<'s>
impl<'s> RefUnwindSafe for AbsoluteKeywordLocation<'s>
impl<'s> Send for AbsoluteKeywordLocation<'s>
impl<'s> Sync for AbsoluteKeywordLocation<'s>
impl<'s> Unpin for AbsoluteKeywordLocation<'s>
impl<'s> UnwindSafe for AbsoluteKeywordLocation<'s>
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