pub struct NoNamespaceSchemaLocationHint {
pub location: String,
pub base_uri: String,
}Expand description
A no-namespace schema location hint extracted from
xsi:noNamespaceSchemaLocation.
Fields§
§location: StringThe schema location URI.
base_uri: StringBase URI of the instance document at the point where this hint was found. Empty if no base URI was set on the runtime.
Trait Implementations§
Source§impl Clone for NoNamespaceSchemaLocationHint
impl Clone for NoNamespaceSchemaLocationHint
Source§fn clone(&self) -> NoNamespaceSchemaLocationHint
fn clone(&self) -> NoNamespaceSchemaLocationHint
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 Eq for NoNamespaceSchemaLocationHint
Source§impl PartialEq for NoNamespaceSchemaLocationHint
impl PartialEq for NoNamespaceSchemaLocationHint
Source§fn eq(&self, other: &NoNamespaceSchemaLocationHint) -> bool
fn eq(&self, other: &NoNamespaceSchemaLocationHint) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for NoNamespaceSchemaLocationHint
Auto Trait Implementations§
impl Freeze for NoNamespaceSchemaLocationHint
impl RefUnwindSafe for NoNamespaceSchemaLocationHint
impl Send for NoNamespaceSchemaLocationHint
impl Sync for NoNamespaceSchemaLocationHint
impl Unpin for NoNamespaceSchemaLocationHint
impl UnsafeUnpin for NoNamespaceSchemaLocationHint
impl UnwindSafe for NoNamespaceSchemaLocationHint
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