[][src]Struct libojo::PatchId

pub struct PatchId { /* fields omitted */ }

A global identifier for a patch.

A PatchId is derived from a patch by hashing its contents. It must be unique: a repository cannot simultaneously contain two patches with the same id.

Methods

impl PatchId[src]

pub fn cur() -> PatchId[src]

There is a special reserved PatchId for patches that are under construction, but not yet finished (see UnidentifiedPatch for more details). This function returns that special id.

pub fn is_cur(&self) -> bool[src]

Checks whether this PatchId is the one decribed in PatchId::cur.

pub fn to_base64(&self) -> String[src]

Represents this PatchId in base64.

We encode in the URL_SAFE encoding because it needs to be a valid path (e.g. no slashes). We prepend the letter 'P', because otherwise there's a chance that the first character will be '-', which is annoying because then the CLI might misinterpret it as a flag.

pub fn from_base64<S: ?Sized + AsRef<[u8]>>(name: &S) -> Result<PatchId, Error>[src]

Converts from base64 (as returned by PatchId::to_base64) to a PatchId.

Trait Implementations

impl PartialEq<PatchId> for PatchId[src]

impl Ord for PatchId[src]

fn max(self, other: Self) -> Self
1.21.0
[src]

Compares and returns the maximum of two values. Read more

fn min(self, other: Self) -> Self
1.21.0
[src]

Compares and returns the minimum of two values. Read more

impl Clone for PatchId[src]

fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl Eq for PatchId[src]

impl Copy for PatchId[src]

impl PartialOrd<PatchId> for PatchId[src]

impl Hash for PatchId[src]

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

Feeds a slice of this type into the given [Hasher]. Read more

impl Debug for PatchId[src]

impl<'de> Deserialize<'de> for PatchId[src]

impl Serialize for PatchId[src]

Auto Trait Implementations

impl Send for PatchId

impl Sync for PatchId

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = !

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

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

🔬 This is a nightly-only experimental API. (try_from)

The type returned in the event of a conversion error.

impl<N> Edge for N where
    N: Copy
[src]

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]

impl<T> Same for T

type Output = T

Should always be Self