pub struct JobOrigin {
pub path: String,
pub repo: Option<String>,
pub script_file: Option<String>,
}Expand description
GitOps provenance for a Manifest (#678). Populated by
kanade job create from the Git context of the source YAML; the
SPA reads it to render Git-managed jobs read-only and link the
operator back at the repo. Never consulted by the runtime.
Fields§
§path: StringRepo-relative path of the manifest YAML — the primary edit
target the SPA surfaces (e.g. configs/jobs/foo.yaml). Forward
slashes regardless of the authoring OS.
repo: Option<String>origin remote URL, when the repo has one. Lets the SPA turn
path into a clickable link; None for remote-less repos.
script_file: Option<String>Repo-relative path of the script_file: this manifest inlined,
when it used one — a secondary pointer shown beneath path.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for JobOrigin
impl<'de> Deserialize<'de> for JobOrigin
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
impl Eq for JobOrigin
Source§impl JsonSchema for JobOrigin
impl JsonSchema for JobOrigin
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 moreimpl StructuralPartialEq for JobOrigin
Auto Trait Implementations§
impl Freeze for JobOrigin
impl RefUnwindSafe for JobOrigin
impl Send for JobOrigin
impl Sync for JobOrigin
impl Unpin for JobOrigin
impl UnsafeUnpin for JobOrigin
impl UnwindSafe for JobOrigin
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
impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.