pub struct SshSignRequest {
pub public_key: String,
pub valid_principals: Option<String>,
pub cert_type: Option<String>,
pub ttl: Option<String>,
pub critical_options: Option<Value>,
pub extensions: Option<Value>,
}Fields§
§public_key: String§valid_principals: Option<String>§cert_type: Option<String>§ttl: Option<String>§critical_options: Option<Value>§extensions: Option<Value>Trait Implementations§
Source§impl Clone for SshSignRequest
impl Clone for SshSignRequest
Source§fn clone(&self) -> SshSignRequest
fn clone(&self) -> SshSignRequest
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for SshSignRequest
impl Debug for SshSignRequest
Source§impl Default for SshSignRequest
impl Default for SshSignRequest
Source§fn default() -> SshSignRequest
fn default() -> SshSignRequest
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for SshSignRequest
impl RefUnwindSafe for SshSignRequest
impl Send for SshSignRequest
impl Sync for SshSignRequest
impl Unpin for SshSignRequest
impl UnsafeUnpin for SshSignRequest
impl UnwindSafe for SshSignRequest
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