[][src]Struct hg_parser::ChangesetHeader

pub struct ChangesetHeader {
    pub p1: Option<Revision>,
    pub p2: Option<Revision>,
    pub manifestid: NodeHash,
    pub user: Vec<u8>,
    pub time: DateTime,
    pub extra: HashMap<Vec<u8>, Vec<u8>>,
    pub files: Vec<Vec<u8>>,
    pub comment: Vec<u8>,
}

Changeset's header.

Fields

p1: Option<Revision>

Parent 1.

p2: Option<Revision>

Parent 2.

manifestid: NodeHash

Manifest id hash.

user: Vec<u8>

User.

time: DateTime

Time.

extra: HashMap<Vec<u8>, Vec<u8>>

Extra properties (like b"branch" shows current branch name, b"closed" equal to b"1" means branch is closed).

files: Vec<Vec<u8>>

Files paths.

comment: Vec<u8>

Comment to revision.

Trait Implementations

impl Debug for ChangesetHeader[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From<T> for T[src]

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

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.

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

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self