pub struct SigningConfig {
pub namespace: String,
}Expand description
Configuration for a signing operation.
Args:
namespace: The SSHSIG namespace (typically “git”).
Usage:
ⓘ
let config = SigningConfig {
namespace: "git".to_string(),
};Fields§
§namespace: StringSSHSIG namespace string (e.g. "git" for commit signing).
Auto Trait Implementations§
impl Freeze for SigningConfig
impl RefUnwindSafe for SigningConfig
impl Send for SigningConfig
impl Sync for SigningConfig
impl Unpin for SigningConfig
impl UnsafeUnpin for SigningConfig
impl UnwindSafe for SigningConfig
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