pub struct CommitSigned { /* private fields */ }Expand description
Create a signed commit (GPG/SSH).
The signature must be provided as a string. The caller is responsible for generating the signature externally.
§Examples
use ironflow_ops_git::commit::CommitSigned;
use ironflow_core::operation::Operation;
let op = CommitSigned::new(
"/path/to/repo",
"Signed commit",
"Alice",
"alice@example.com",
"-----BEGIN PGP SIGNATURE-----\n...",
);
assert_eq!(op.kind(), "git");Implementations§
Source§impl CommitSigned
impl CommitSigned
Sourcepub fn new(
repo_path: impl Into<PathBuf>,
message: impl Into<String>,
author_name: impl Into<String>,
author_email: impl Into<String>,
signature: impl Into<String>,
) -> Self
pub fn new( repo_path: impl Into<PathBuf>, message: impl Into<String>, author_name: impl Into<String>, author_email: impl Into<String>, signature: impl Into<String>, ) -> Self
Create a new signed-commit operation.
Sourcepub async fn run(
&self,
_ctx: &OperationContext,
) -> Result<CommitSignedOutput, OperationError>
pub async fn run( &self, _ctx: &OperationContext, ) -> Result<CommitSignedOutput, OperationError>
Execute and return a typed result.
Trait Implementations§
Source§impl Operation for CommitSigned
impl Operation for CommitSigned
Source§fn execute<'life0, 'life1, 'async_trait>(
&'life0 self,
ctx: &'life1 OperationContext,
) -> Pin<Box<dyn Future<Output = Result<Value, OperationError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
fn execute<'life0, 'life1, 'async_trait>(
&'life0 self,
ctx: &'life1 OperationContext,
) -> Pin<Box<dyn Future<Output = Result<Value, OperationError>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
'life1: 'async_trait,
Execute the operation and return the result as JSON. Read more
Source§impl TypedOperation for CommitSigned
impl TypedOperation for CommitSigned
Source§type Output = CommitSignedOutput
type Output = CommitSignedOutput
The concrete output type that
Operation::execute produces.Auto Trait Implementations§
impl Freeze for CommitSigned
impl RefUnwindSafe for CommitSigned
impl Send for CommitSigned
impl Sync for CommitSigned
impl Unpin for CommitSigned
impl UnsafeUnpin for CommitSigned
impl UnwindSafe for CommitSigned
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