Struct git2::Signature [−][src]
pub struct Signature<'a> { /* fields omitted */ }
Expand description
A Signature is used to indicate authorship of various actions throughout the library.
Signatures contain a name, email, and timestamp. All fields can be specified
with new
while the now
constructor omits the timestamp. The
Repository::signature
method can be used to create a default signature
with name and email values read from the configuration.
Implementations
Create a new action signature with a timestamp of ‘now’.
See new
for more information
Create a new action signature.
The time
specified is in seconds since the epoch, and the offset
is
the time zone offset in minutes.
Returns error if either name
or email
contain angle brackets.
Gets the name on the signature.
Returns None
if the name is not valid utf-8
Gets the name on the signature as a byte slice.
Gets the email on the signature.
Returns None
if the email is not valid utf-8
Gets the email on the signature as a byte slice.
Trait Implementations
Auto Trait Implementations
impl<'a> RefUnwindSafe for Signature<'a>
impl<'a> UnwindSafe for Signature<'a>
Blanket Implementations
Mutably borrows from an owned value. Read more