Skip to main content

Target

Struct Target 

Source
pub struct Target { /* private fields */ }
Expand description

A resolved metadata target consisting of a type and an optional value.

Implementations§

Source§

impl Target

Source

pub fn from_parts(target_type: TargetType, value: Option<String>) -> Self

Create a target from raw parts.

This is a low-level constructor used when the target type and value are already known (e.g., when reconstructing targets from database rows or parsed tree entries). For user-facing construction, prefer the named constructors (commit(), project(), etc.) or parse().

§Parameters
  • target_type: the kind of target
  • value: the target value, or None for project targets
Source

pub fn commit(sha: &str) -> Result<Self>

Create a commit target from a SHA (full or partial).

§Parameters
  • sha: a commit SHA string, must be at least 3 characters.
§Errors

Returns an error if the SHA is shorter than 3 characters.

Source

pub fn project() -> Self

Create a project-scoped target (no value needed).

Source

pub fn path(path: &str) -> Self

Create a path target.

§Parameters
  • path: the file or directory path this metadata attaches to.
Source

pub fn branch(name: &str) -> Self

Create a branch target.

§Parameters
  • name: the branch name this metadata attaches to.
Source

pub fn change_id(id: &str) -> Self

Create a change-id target.

§Parameters
  • id: the change identifier this metadata attaches to.
Source

pub fn parse(s: &str) -> Result<Self>

Parse a target from a string in type:value format (e.g. "commit:abc123").

This is the CLI-oriented constructor. For programmatic use, prefer the named constructors: commit(), project(), path(), branch(), change_id().

§Parameters
  • s: the target string in type:value format, or "project" for project targets.
§Errors

Returns an error if the format is invalid, the target type is unknown, or the value is shorter than 3 characters.

Source

pub fn target_type(&self) -> &TargetType

The type of this target (commit, branch, path, etc.).

Source

pub fn value(&self) -> Option<&str>

The target’s value, if any.

Returns None for project targets, Some(sha) for commit targets, etc.

Source

pub fn resolve(&self, repo: &Repository) -> Result<Target>

If this is a commit target with a partial SHA, expand it to 40 chars using the given Git repository. Returns a new target with the expanded SHA, or a clone of this target if no resolution is needed.

Trait Implementations§

Source§

impl Clone for Target

Source§

fn clone(&self) -> Target

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for Target

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Display for Target

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Hash for Target

Source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Source§

impl PartialEq for Target

Source§

fn eq(&self, other: &Target) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl Eq for Target

Source§

impl StructuralPartialEq for Target

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.