pub struct RepoPath(/* private fields */);Expand description
Canonical repo-relative path used in findings and reports.
Normalization rules are intentionally simple and deterministic:
- always forward slashes (
/) - no leading
./ - never absolute (best-effort: absolute inputs are preserved but flagged by checks)
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for RepoPath
impl<'de> Deserialize<'de> for RepoPath
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<Utf8PathBuf> for RepoPath
impl From<Utf8PathBuf> for RepoPath
Source§fn from(value: Utf8PathBuf) -> Self
fn from(value: Utf8PathBuf) -> Self
Converts to this type from the input type.
Source§impl JsonSchema for RepoPath
impl JsonSchema for RepoPath
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§fn inline_schema() -> bool
fn inline_schema() -> bool
Whether JSON Schemas generated for this type should be included directly in parent schemas,
rather than being re-used where possible using the
$ref keyword. Read moreSource§impl Ord for RepoPath
impl Ord for RepoPath
Source§impl PartialOrd for RepoPath
impl PartialOrd for RepoPath
impl Eq for RepoPath
impl StructuralPartialEq for RepoPath
Auto Trait Implementations§
impl Freeze for RepoPath
impl RefUnwindSafe for RepoPath
impl Send for RepoPath
impl Sync for RepoPath
impl Unpin for RepoPath
impl UnsafeUnpin for RepoPath
impl UnwindSafe for RepoPath
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