pub enum ResolutionCode {
Show 21 variants
ExactPath,
PathNotFound,
TargetTypeMismatch,
SymlinkEntry,
GitlinkEntry,
UnsupportedQuerySemantics,
UnsupportedFragmentSemantics,
UnsupportedVersionScope,
SiteRouteUnsupported,
NetworkPathUnsupported,
CodeFragmentUnevaluated,
InvalidUri,
InvalidPercentEncoding,
DecodedPathControl,
PathTraversal,
BackslashSeparator,
EncodedSlash,
InvalidFragmentEncoding,
InvalidReference,
ExternalUrl,
ForeignRepository,
}Expand description
The closed resolution codes in schema declaration order.
Variants§
ExactPath
PathNotFound
TargetTypeMismatch
SymlinkEntry
GitlinkEntry
UnsupportedQuerySemantics
UnsupportedFragmentSemantics
UnsupportedVersionScope
SiteRouteUnsupported
NetworkPathUnsupported
CodeFragmentUnevaluated
InvalidUri
InvalidPercentEncoding
DecodedPathControl
PathTraversal
BackslashSeparator
EncodedSlash
InvalidFragmentEncoding
InvalidReference
ExternalUrl
ForeignRepository
Implementations§
Trait Implementations§
Source§impl Clone for ResolutionCode
impl Clone for ResolutionCode
Source§fn clone(&self) -> ResolutionCode
fn clone(&self) -> ResolutionCode
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 Copy for ResolutionCode
Source§impl Debug for ResolutionCode
impl Debug for ResolutionCode
impl Eq for ResolutionCode
Source§impl Ord for ResolutionCode
impl Ord for ResolutionCode
Source§fn cmp(&self, other: &ResolutionCode) -> Ordering
fn cmp(&self, other: &ResolutionCode) -> Ordering
1.21.0 (const: unstable) · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for ResolutionCode
impl PartialEq for ResolutionCode
Source§impl PartialOrd for ResolutionCode
impl PartialOrd for ResolutionCode
impl StructuralPartialEq for ResolutionCode
Auto Trait Implementations§
impl Freeze for ResolutionCode
impl RefUnwindSafe for ResolutionCode
impl Send for ResolutionCode
impl Sync for ResolutionCode
impl Unpin for ResolutionCode
impl UnsafeUnpin for ResolutionCode
impl UnwindSafe for ResolutionCode
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