pub struct PlainGitVerifyProbe {
pub root: PathBuf,
pub git_branch: Option<String>,
pub changes: WorktreeStatus,
pub trust: RepositoryVerificationState,
}Fields§
§root: PathBuf§git_branch: Option<String>§changes: WorktreeStatus§trust: RepositoryVerificationStateCanonical public field is verification (alpha: no dual-emit of trust).
Trait Implementations§
Source§impl Debug for PlainGitVerifyProbe
impl Debug for PlainGitVerifyProbe
Source§impl JsonSchema for PlainGitVerifyProbe
impl JsonSchema for PlainGitVerifyProbe
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 moreAuto Trait Implementations§
impl Freeze for PlainGitVerifyProbe
impl RefUnwindSafe for PlainGitVerifyProbe
impl Send for PlainGitVerifyProbe
impl Sync for PlainGitVerifyProbe
impl Unpin for PlainGitVerifyProbe
impl UnsafeUnpin for PlainGitVerifyProbe
impl UnwindSafe for PlainGitVerifyProbe
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